摘要: ci框架默认的url规则中带有应用的入口文件,例如:example.com/index.php/news/article/my_article在以上URL中带有入口文件index.PHP,这样的URL规则对搜索引擎来说是不友好的,那么如何去除这个index.php呢?apache环境下:通过 .ht... 阅读全文
posted @ 2014-11-29 17:12 jshaibozhong 阅读(761) 评论(0) 推荐(0) 编辑
摘要: 函数:原型每一个构造函数都有一个属性叫做原型(prototype,下面都不再翻译,使用其原文)。这个属性非常有用:为一个特定类声明通用的变量或者函数。prototype的定义你不需要显式地声明一个prototype属性,因为在每一个构造函数中都有它的存在。你可以看看下面的例子:Example PT1... 阅读全文
posted @ 2014-11-29 16:47 jshaibozhong 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1,connect描述:实例连接到一个Redis.参数:host: string,port: int返回值:BOOL 成功返回:TRUE;失败返回:FALSE示例:connect('127.0.0.1', 6379); var_dump($result); //结果:bool(true) ?> ... 阅读全文
posted @ 2014-11-29 15:23 jshaibozhong 阅读(303) 评论(0) 推荐(0) 编辑
摘要: get('test');* @example MEMCACHE_HOST 主机* @example MEMCACHE_PORT 端口* @example MEMCACHE_TIMEOUT 缓存时间*/class Memcached {private $memcache = null;/*** @de... 阅读全文
posted @ 2014-11-29 15:15 jshaibozhong 阅读(310) 评论(0) 推荐(0) 编辑
摘要: class redisDB{private $redis; //redis对象/*** 初始化Redis* $config = array(* 'server' => '127.0.0.1' 服务器* 'port' => '6379' 端口号* )* @param array $config*/fu... 阅读全文
posted @ 2014-11-29 15:14 jshaibozhong 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 下载地址:http://down.admin5.com/php/75024.html官方网址:https://github.com/ErikDubbelboer/phpRedisAdmin 阅读全文
posted @ 2014-11-29 15:13 jshaibozhong 阅读(406) 评论(0) 推荐(0) 编辑
摘要: conf = $config;} /** * Get a instance of MyRedisClient * * @param string $key * @return object */static function getInstance($configs){ if (!self::... 阅读全文
posted @ 2014-11-29 15:12 jshaibozhong 阅读(399) 评论(0) 推荐(0) 编辑
摘要: redis的优点:支持主从备份,操作指令丰富,支持异步的数据持久化将 redis 安装到 /usr/local/webserver/redis1.下载安装包wget http://redis.googlecode.com/files/redis-2.2.15.tar.gztar zxvf redis... 阅读全文
posted @ 2014-11-29 14:56 jshaibozhong 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 《redis中文手册》,将示例代码用php来实现,注意php-redis与redis_cli的区别(主要是返回值类型和参数用法)。phpredis是redis的php的一个扩展,效率是相当高有链表排序功能,对创建内存级的模块业务关系很有用;以下是redis官方提供的命令使用技巧:下载地址如下:htt... 阅读全文
posted @ 2014-11-29 14:53 jshaibozhong 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 【config_inc.php】【redis.class.php】 rets[$redis_cfg['server']]) === TRUE){$this -> ret = $this -> rets[$redis_cfg['server']];return TRUE;}else{$this -> ... 阅读全文
posted @ 2014-11-29 14:50 jshaibozhong 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 一、redisRedis是一个高性能的key-value数据库, 使用内存作为主存储,数据访问速度非常快,当然它也提供了两种机制支持数据持久化存储.比较遗憾的是,Redis项目不直接支持Windows,Windows版项目是由微软开放技术团队建立和维护一个实验性项目(支持32,64位),所以并不适用... 阅读全文
posted @ 2014-11-29 14:49 jshaibozhong 阅读(218) 评论(0) 推荐(0) 编辑