After running celery in my machine, I got this: Solution 1: Solution 2: ...
分类:
其他好文 时间:
2016-12-06 13:53:30
阅读次数:
192
公司ELK系统目前的设置是每月自动将日志信息记录至新的索引中,将日志数据按月分索引保存,在扩展的ELK架构中,利Logstash对接rabbitmq,获取日志消息,自动持久化至Elasticsearch。而Elasticsearch存在一个关键问题就是索引的设置及字段的属性指定,最常见的问题就是,某 ...
分类:
其他好文 时间:
2016-12-05 16:56:59
阅读次数:
233
Computer Systems A Programmer's Perspective Second Edition As we will discuss, the extension of IA32 to 64 bits, termed x86-64, was origi- nally devel ...
分类:
数据库 时间:
2016-12-05 14:21:39
阅读次数:
223
1 带参数的委托方法来传递参数 static void Main(string[] args) { var d = new Data { Message = "中国" }; //通过带参数的委托方法来传递参数 ParameterizedThreadStart var t2 = new Thread( ...
分类:
编程语言 时间:
2016-12-04 14:14:35
阅读次数:
198
<context-param>的作用: web.xml的配置中<context-param>配置作用1. 启动一个WEB项目的时候,容器(如:Tomcat)会去读它的配置文件web.xml.读两个节点: <listener></listener> 和 <context-param></context ...
分类:
其他好文 时间:
2016-12-03 18:07:58
阅读次数:
333
class Shui implements Runnable{ int a=0; @Override public void run() { synchronized (this) { while (true) { String str= Thread.currentThread().getName ...
分类:
编程语言 时间:
2016-12-03 09:56:04
阅读次数:
216
Computer Systems A Programmer's Perspective Second Edition BusesRunning throughout the system is a collection of electrical conduits called busesthat ...
分类:
其他好文 时间:
2016-12-01 14:49:47
阅读次数:
180
最近一个项目需要保存到本地文件,想用plist,但是发现很多内容是自定义的,于是只能自己归档接档。不难,找了一篇范文大家保存一下,方便以后学习使用。 转自:http://mobile.51cto.com/iphone-282203_4.htm iPhone开发应用之Archiving NSCoder ...
分类:
移动开发 时间:
2016-11-30 16:55:18
阅读次数:
334
从oracle官网下载的这个HotSpot虚拟机的概况文档,现在翻一下锁的部分; Java 锁 *每一个java对象都是一个潜在的monitor(监视器) >synchronized 关键字 *所有现代JVM虚拟机都包含light-weight锁 >避免关联一个系统互斥信号量或者每个对象的条件变量( ...
分类:
其他好文 时间:
2016-11-28 20:14:35
阅读次数:
199
客户端与服务会使用一个Sessionid的Cookie值来进行客户端和服务器端会话的匹配,这个Cookie一般是服务器端读/写的,并在Http请求响应的Header中的Set-Cookie属性设置: express-session是针对nodejs express框架提供的一套session扩展 主 ...
分类:
其他好文 时间:
2016-11-28 00:19:09
阅读次数:
280