执行此操作时使用spring-data-redis
hashOperations = redisTemplate.opsForHash();
return hashOperations.values(this.getEntityClass().getName());
//or use this,the same
//return hashOperations.entries(this.getEntityClass().getName());
它运行得如此之慢,返回10000个对象需要700ms。 如果我使用memcache,它只需要15ms,那么我应该怎么做spring-data-redis