Ajax异步加载数据及Redis缓存

Posted zemul

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax异步加载数据及Redis缓存相关的知识,希望对你有一定的参考价值。

技术分享图片

 

 

针对网页分类条目的动态加载,图为页面的Head部分。

 

//categoryListServlet准备分类数据
ProductService service = new ProductService();
List<Category> categoryList = service.findAllCategoryList();
response.setContentType("text/html; charset=utf-8");
Gson gson = new Gson();
String json = gson.toJson(categoryList);
response.getWriter().write(json);

 

head.jsp异步加载js部分:

<script type="text/javascript">
          //head.jsp加载完成后,ajax异步加载分类条
          $(function(){
              
              var content= "";
              $.post(
                      "${pageContext.request.contextPath}/categoryList",
                      function(data){
                          //[{"cid":"xxx","cname":"aaa"},{"cid":"xxx","cname":"aaa"}]
                          for(var i=0;i<data.length;i++){
                              content += "<li><a href=‘#‘>"+data[i].cname+"</a></li>";
                          }
                          //将拼接好的类别,写入到页面
                          $("#categoryUI").html(content);  
                      },
                      "json"
              );
              
          });
        
        
        </script>

 

缓存逻辑:

  1.查询缓存中有无分类数据

  2.有,直接查询缓存;

   无,则通过hibernate查询,并添加到缓存中

  3.将查询到的数据返回。

//查询缓存中有无分类数据,如果没有查询写入缓存
Jedis jedis = JedisPoolUtils.getJedis();
String categoryListJson = jedis.get("categoryListJson");
if(categoryListJson == null){
    System.out.println("缓存没有数据 查询数据库");
    ProductService service = new ProductService();
    List<Category> categoryList = service.findAllCategoryList();
    Gson gson = new Gson();
    categoryListJson = gson.toJson(categoryList);
    jedis.set("categoryListJson", categoryListJson);
}

//准备分类数据    
response.setContentType("text/html; charset=utf-8");
response.getWriter().write(categoryListJson);

 

以上是关于Ajax异步加载数据及Redis缓存的主要内容,如果未能解决你的问题,请参考以下文章

怎样使用redis缓存,java代码

Redis实例1:获取下拉框数据

Redis 异步客户端选型及落地实践

浅谈Android中的异步加载之ListView中图片的缓存及优化三

Redis 学习 —— 数据类型及操作

Ajax异步加载后台数据(换页面,加强用户体验所用)