分发层nginx,lua应⽤,会将商品id,商品店铺id,都转发到后端的应⽤nginx
1、应⽤nginx的lua脚本接收到请求
2、获取请求参数中的商品id,以及商品店铺id
3、根据商品id和商品店铺id,在nginx本地缓存中尝试获取数据
4、如果在nginx本地缓存中没有获取到数据,那么就到redis分布式缓存中获取数据,如果获取到了数据,还要设置到nginx本地缓存中
但是这⾥有个问题,建议不要⽤nginx+lua直接去获取redis数据
因为openresty没有太好的redis cluster的⽀持包,所以建议是发送http请求到缓存数据⽣产服务,由该服务提供⼀个http接⼝
缓存数⽣产服务可以基于redis cluster api从redis中直接获取数据,并返回给nginx
下载相关http的lua包
cd /usr/hello/lualib/resty/
wget raw.githubusercontent/pintsized/lua-resty-http/master/lib/resty/http_headers.lua
wget raw.githubusercontent/pintsized/lua-resty-http/master/lib/resty/http.lua
5、如果缓存数据⽣产服务没有在redis分布式缓存中没有获取到数据,那么就在⾃⼰本地ehcache中获取数据,返回数据给nginx,也要设置到nginx本地缓存中
6、如果ehcache本地缓存都没有数据,那么就需要去原始的服务中拉去数据,该服务会从mysql中查询,拉去到数据之后,返回给nginx,并重新设置到ehcache和redis中
这⾥先不考虑,后⾯要专门讲解⼀套分布式缓存重建并发冲突的问题和解决⽅案
7、nginx最终利⽤获取到的数据,动态渲染⽹页模板
下载⽹页模板相关的lua包
cd /usr/hello/lualib/resty/
wget raw.githubusercontent/bungle/lua-resty-template/master/lib/resty/template.lua
mkdir /usr/hello/lualib/resty/html
cd /usr/hello/lualib/resty/html
wget raw.githubusercontent/bungle/lua-resty-template/master/lib/resty/template/html.lua
在/usr/f的server中配置模板位置
vi  /usr/f
set $template_location "/templates";
set $template_root "/usr/hello/templates";
创建⽬录并新建页⾯
mkdir /usr/hello/templates
vi /usr/hello/templates/product.html
<html>
html 网页 模板 引导
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>商品详情页</title>
</head>
<body>
商品id: {* productId *}<br/>
商品名称: {* productName *}<br/>
商品图⽚列表: {* productPictureList *}<br/>
商品规格: {* productSpecification *}<br/>
商品售后服务: {* productService *}<br/>
商品颜⾊: {* productColor *}<br/>
商品⼤⼩: {* productSize *}<br/>
店铺id: {* shopId *}<br/>
店铺名称: {* shopName *}<br/>
店铺等级: {* shopLevel *}<br/>
店铺好评率: {* shopGoodCommentRate *}<br/>
</body>
</html>
8、将渲染后的⽹页模板作为http响应,返回给分发层nginx
在 vi /usr/servers/nginx/f中的http加⼊:
lua_shared_dict my_cache 128m;
创建lua脚本
vi /usr/hello/lua/product.lua
lua脚本中:
local uri_args = _uri_args()
local productId = uri_args["productId"]
local shopId = uri_args["shopId"]
local cache_ngx = _cache
local productCacheKey = "product_info_"..productId
local shopCacheKey = "shop_info_"..shopId
local productCache = cache_ngx:get(productCacheKey)
local shopCache = cache_ngx:get(shopCacheKey)
if productCache == "" or productCache == nil then
local http = require("resty.http")
local httpc = w()
local resp, err = httpc:request_uri("192.168.31.179:8080",{    method = "GET",
path = "/getProductInfo?productId="..productId
})
productCache = resp.body
cache_ngx:set(productCacheKey, productCache, 10 * 60)
end
if shopCache == "" or shopCache == nil then
local http = require("resty.http")
local httpc = w()
local resp, err = httpc:request_uri("192.168.31.179:8080",{    method = "GET",
path = "/getShopInfo?shopId="..shopId
})
shopCache = resp.body
cache_ngx:set(shopCacheKey, shopCache, 10 * 60)
end
local cjson = require("cjson")
local productCacheJSON = cjson.decode(productCache)
local shopCacheJSON = cjson.decode(shopCache)
local context = {
productId = productCacheJSON.id,
productName = productCacheJSON.name,
productPrice = productCacheJSON.price,
productPictureList = productCacheJSON.pictureList,
productSpecification = productCacheJSON.specification,
productService = productCacheJSON.service,
productColor = lor,
productSize = productCacheJSON.size,
shopId = shopCacheJSON.id,
shopName = shopCacheJSON.name,
shopLevel = shopCacheJSON.level,
shopGoodCommentRate = dCommentRate }
local template = require("plate")
重启nginx
cd/usr/servers/nginx/sbin/nginx -s reload

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。