点赞实现[多对多的redis实现]

点赞实现:

思路:每个question对应一个set();调用jedis.sadd(key,value);
由于question–赞userId是多对多的数据表结构,所以set结构

扩展:每个文章有不同的标签,也可以用这种数据结构实现:

业务层:

@Serveice

//用户userId,对某个评论或者回答进行了点赞
public long like(int userId,int entityType,int entityId){
    //在喜欢中添加这个人
    String likeKey= RedisKeyUtil.getLikeKey(entityType, entityId);
    jedisAdapter.sadd(likeKey,String.valueOf(userId));
}

数据层

@Service//包装成一个服务,并且实现初始化implements InitializingBean属性pool
public class JedisAdapter implements InitializingBean{

//初始化pool,相当有了一个集合中的数据
    @Override
    public void afterPropertiesSet() throws Exception {
        pool=new JedisPool("redis://localhost:6379/10");
    }

 //增加一个连接池的添加;在这这个连接池中增加一个数据
    public long sadd(String key,String value){
        Jedis jedis=null;
        try{
            jedis=pool.getResource();
            return jedis.sadd(key,value);
        }catch (Exception e){
            logger.error("发生异常:"+e.getMessage());
        }finally {
            if (jedis!=null){
                jedis.close();
            }
        }
        return 0;
    }   
}

你可能感兴趣的:(javaWeb)