博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OpenResty和Resis一些基本的性能配置
阅读量:6771 次
发布时间:2019-06-26

本文共 1037 字,大约阅读时间需要 3 分钟。

Basics:1. Ensure that you have not disabled Lua code cache:https://github.com/openresty/lua-nginx-module#lua_code_cache2. Load resty.core:https://github.com/openresty/lua-resty-core#synopsis3. Check that you are using Redis connection pools:do not call this: https://github.com/openresty/lua-resty-redis#closecall this: https://github.com/openresty/lua-resty-redis#set_keepalive4. Use unix sockets instead of TCP sockets if possible (e.g.. Redis is on the same machine)5. Use Redis pipelines:https://github.com/openresty/lua-resty-redis#init_pipeline6. Cache Redis data in OpenResty shared dict and also to Lua module level (preload data in init_*s):https://github.com/openresty/lua-nginx-module#lua_shared_dicthttps://github.com/openresty/lua-nginx-module#ngxshareddicthttps://github.com/openresty/lua-resty-lrucache(there are some projects like https://github.com/hamishforbes/lua-resty-tlc that might come handy).... and also make look for adjusting Nginx confs and Kernel settings.

转载于:https://www.cnblogs.com/xiangnan/p/5944584.html

你可能感兴趣的文章
java中equals和==的区别
查看>>
二十年后的回眸(6)——中途夭折的初次创业
查看>>
DB2日常运维之总结
查看>>
用hadoop中的libhdfs和fuse-dfs构建快速云存储
查看>>
Redis实战(6)数据类型四Sets
查看>>
Android Studio第八期 - 自定义布局无网有网状态
查看>>
读《Go并发编程实战》第4章 流程控制方式
查看>>
IT168:数据库安全审计用户需求调查报告
查看>>
Lync Server 2010不同规模拓扑图详解
查看>>
QQ群排名优化:“小百度”大蓝海有搞头
查看>>
写在毕业季(四):是做IT?IT?还是IT呢?
查看>>
Gtk-WARNING **: 无法在模块路径中找到主题引擎:“pixmap”
查看>>
验证控件收藏
查看>>
安装配置Varnish3.0手记
查看>>
舌尖上的职场(三)我来买单!
查看>>
HighChartS cpu利用率动态图(Java版)
查看>>
extern int *a与extern int a[]
查看>>
转: 测试云服务器的工具相关
查看>>
分布式事务 & 两阶段提交 & 三阶段提交
查看>>
linux下编译upx 3.93
查看>>