码迷,mamicode.com
首页 >  
搜索关键字:redis list    ( 76141个结果
Linux下chkconfig命令详解
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level ][系统服务...
分类:系统相关   时间:2014-05-15 10:28:17    阅读次数:406
Linux设置开机服务自动启动
[root@localhost ~]# chkconfig --list 显示开机可以自动启动的服务[root@localhost ~]# chkconfig --add *** 添加开机自动启动***服务[root@localhost ~]# chkconfig --del *** 删除开机自动启...
分类:系统相关   时间:2014-05-15 09:47:40    阅读次数:367
在python下比celery更加简单的异步任务队列RQ
前言:这里介绍一个python下,比celery更加简单的异步工具,真的是很简单,当然他的功能没有celery多,复杂程度也没有celery大,文档貌似也没有celery多,但是为啥会介绍rq这个东西因为他够简单。当然他虽然简单,但是也是需要中间人的,也就是Broker,这里只能是redis了。他没..
分类:编程语言   时间:2014-05-15 09:21:14    阅读次数:568
java并发编程之Guarded Suspention
当客户端请求速度远远大于服务端的处理速度,这时候就非常适合使用GuardedSuspention模式packagecn.fcl.guardendSuspension; importjava.util.ArrayList; importjava.util.List; publicclassRequestQueue{ privateList<Integer>integers=newArrayList<Integer>(); ..
分类:编程语言   时间:2014-05-15 09:08:21    阅读次数:283
【redis运维】redis自动安装脚本(只安装redis)
Redis自动安装部署 本文总共分为4个部分: redis自动安装脚本目录结构说明; redis自动安装脚本内容; redis的操作系统服务脚本说明; 本文引用的资料链接地址。...
分类:其他好文   时间:2014-05-15 08:22:14    阅读次数:235
asp.net设置默认打开页面,Web.config,defaultDocument
The web.config file can be used to set a default document, or list of default documents for your website. Web.config can be used to change the defau.....
分类:Web程序   时间:2014-05-15 02:21:15    阅读次数:448
Kibana+Logstash+Elasticsearch+Redis安装部署
最近做日志分析,发现logstash较符合自己的需求,Logstash:做系统log收集,转载的工具。同时集成各类日志插件,对日志查询和分析的效率有很大的帮助.一般使用shipper作为log收集、indexer作为log转载.Logstashshipper收集log并将log转发给redis存储Logstashindexer从redis中读..
分类:其他好文   时间:2014-05-15 00:42:49    阅读次数:655
LeetCode--Linked List Cycle
Linked List Cycle  Total Accepted: 17148 Total Submissions: 49300My Submissions Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra sp...
分类:其他好文   时间:2014-05-15 00:13:50    阅读次数:279
Redis的主从复制设置与安装
引言: 本文将讲述如何在Redis进行主从设置。...
分类:其他好文   时间:2014-05-14 23:57:32    阅读次数:514
【LeetCode】Linked List Cycle
Linked List CycleGiven a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?做完Linked List Cycle II在做这...
分类:其他好文   时间:2014-05-14 23:30:00    阅读次数:399
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!