Use spring-data-redis, when I do this action
hashOperations = redisTemplate.opsForHash();
return hashOperations.values(this.getEntityClass().getName());
//or use this,the same
//return hashOperations.entries(this.getEntityClass().getName());
it runs so slow, return 10000 objects need 700ms. if I use memcache, it just need 15ms, so what should I do with spring-data-redis