zoukankan      html  css  js  c++  java
  • Redis应用一例(存证数量用计数器实现)

        public Long getCreationCounter() {
            String host =PropertyUtils.getPropertyValue("redis.server.host");
            String port =PropertyUtils.getPropertyValue("redis.server.port");
            String password =PropertyUtils.getPropertyValue("redis.server.password");
            jedis = new Jedis(host,Integer.parseInt(port));
            if(password != null && password.length()>0){
                jedis.auth(password);
            }
            String count = jedis.get(REDIS_COUNT_STROAGEEVIDENCE);
            jedis.close();
            return Long.parseLong(count);
        }
    <select id="getCount" resultType="long">
        select count(1) from m_storage_evidence
    </select>
        @Override
        public long getCount() throws ServiceException {
            // TODO Auto-generated method stub
            return stroageEvidenceMapper.getCount();
    
        }
    
        @Override
        public void executeStroageEvidenceCount() throws ServiceException {
            // TODO Auto-generated method stub
            Long count = getCount();
            System.out.println(CybMain.properties_version);
            String host =PropertiesUtils.getValueByKey(CybMain.properties_version, "redis.server.host");
            String port =PropertiesUtils.getValueByKey(CybMain.properties_version, "redis.server.port");
            String password = PropertiesUtils.getValueByKey(CybMain.properties_version, "redis.server.password");
            jedis = new Jedis(host,Integer.parseInt(port));
            if(password != null && password.length()>0){
                jedis.auth(password);
            }
            jedis.set("countStroageEvidence", count+"");
            jedis.close();
            
        }

  • 相关阅读:
    js 提示框的实现---组件开发之(一)
    js 原型链
    js 哈希路由原理实现
    js 弹窗的实现
    js 滑动门的实现
    Delphi IDFtp用法,包含断点续传
    memortstream Base64编码和filestream base64编码不同
    Delphi另一个多线程函数:BeginThread用法
    delphi 讲的比较详细的多线程(推荐)
    多线程简单实用
  • 原文地址:https://www.cnblogs.com/rgqancy/p/6272936.html
Copyright © 2011-2022 走看看