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();
            
        }

  • 相关阅读:
    C语言I博客作业10
    C语言I博客作业09
    C语言I博客作业08
    背景图
    C语言II作业01
    C语言寒假大作战04
    C语言寒假大作战03
    C语言寒假大作战02
    C语言寒假大作战01
    C语言I博客作业12
  • 原文地址:https://www.cnblogs.com/rgqancy/p/6272936.html
Copyright © 2011-2022 走看看