
Cache
Bill11YAng
这个作者很懒,什么都没留下…
展开
-
cache
static Func<T, R> Cache<T, R>(Func<T, R> func) { var mem = new Dictionary<T, R>(); return x => { if (!mem...转载 2019-01-24 16:18:08 · 114 阅读 · 0 评论 -
redis 本机测试主从 修改从的端口号
1. 主服务器: 先运行master服务器 2. 从服务器目录:在redis.windows.conf中修改端口号 并运行 3. 在从服务器目录: 运行redis-cli.exe -h 127.0.0.1 -p 6389 切换到从服务器端口 /* 设置密码 config set requirepass 123 auth 123 */ 4. 给redis设置...原创 2019-05-31 14:57:32 · 345 阅读 · 0 评论