上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 37 下一页
摘要: Redis安装 1、下载安装包 2、解压 3、安装 make && make install 4、验证 除了执行PATH路径下的命令外,也可以去 src 目录下(推荐这个) 在:/usr/local/bin 下,会有 redis-server 一般此目录已经加入PATH了 redis-server 阅读全文
posted @ 2016-09-02 11:49 csnmd 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Redis概述 简介 Redis 是完全开源免费的,遵守BSD协议,是一个高性能的key-value数据库。 Redis 与其他 key - value 缓存产品有以下三个特点: Redis支持数据的持久化,可以将内存中的数据保持在磁盘中,重启的时候可以再次加载进行使用。 Redis不仅仅支持简单的 阅读全文
posted @ 2016-09-02 11:48 csnmd 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Nginx强大的地方当然不止目前所讲的这些,详见 http://www.nginx.cn/doc/ 或 http://tengine.taobao.org/book/index.html 这两个就作为技术手册好了 阅读全文
posted @ 2016-09-01 22:18 csnmd 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 自动列目录 location / { # 自动列目录 autoindex on; # 显示文件大小 on 或 off autoindex_exact_size on; # 显示文件修改时间 on 或 off autoindex_localtime on; } 阅读全文
posted @ 2016-09-01 22:17 csnmd 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Nginx浏览器本地缓存设置 浏览器缓存,是为了加速浏览 浏览器在用户磁盘上对最近请求过的文档进行存储,当访问者再次请求这个页面时,浏览器自动从本地磁盘显示文档,这样可以加速页面浏览 浏览器缓存通过 expires 指令输出 Header 头来实现 语法:expires [time|epoch|ma 阅读全文
posted @ 2016-09-01 22:17 csnmd 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 日志文件配置与切割 自定义日志格式 http { server { listen 80 default; server_name _*; access_log logs/default.access.log combined; location / { index index.html; root 阅读全文
posted @ 2016-09-01 22:16 csnmd 阅读(520) 评论(0) 推荐(0) 编辑
摘要: 创建会话 1 package org.zln.zk; 2 3 import org.apache.zookeeper.WatchedEvent; 4 import org.apache.zookeeper.Watcher; 5 import org.apache.zookeeper.ZooKeepe 阅读全文
posted @ 2016-08-27 21:11 csnmd 阅读(718) 评论(0) 推荐(0) 编辑
摘要: quit 退出 connect host:port 连接到其他ZooKeeper服务器 close 关闭连接 history 操作指令历史 redo 重复执行某个指令, 使用格式为 redo id,id号就是 history 命令时显示的编号 阅读全文
posted @ 2016-08-27 16:06 csnmd 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: 首先使用 zkCli.sh 连接上ZooKeeper服务器 配额设置命令格式如下: -n:val设置子节点个数 -b:val设置节点的数据长度 如果我们指定了某个节点只允许创建3个子节点,但是我们创建了四个,也不会报错,只是在日志上记录一个警告而已 日志文件在bin目录下,有一个zookeeper. 阅读全文
posted @ 2016-08-27 16:02 csnmd 阅读(1722) 评论(0) 推荐(0) 编辑
摘要: zkCli.sh 在 bin 目录下的 zkCli.sh 就是ZooKeeper客户端 ./zkCli.sh -timeout 5000 -server 127.0.0.1:2181 客户端与ZooKeeper建立链接 timeout:超时时间,单位毫秒 r:只读模式,当节点坏掉的时候,还可以提供读 阅读全文
posted @ 2016-08-27 15:48 csnmd 阅读(125886) 评论(1) 推荐(8) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 37 下一页