List of usage examples for org.springframework.data.redis.connection RedisConnection bgReWriteAof
void bgReWriteAof();
From source file:com.zxy.commons.cache.RedisUtils.java
/** * Start an {@literal Append Only File} rewrite process on server. * <p>//ww w .jav a 2s . c o m * See http://redis.io/commands/bgrewriteaof * * @since 1.3 */ public static void bgReWriteAof() { redisTemplate.execute(new RedisCallback<Void>() { @Override public Void doInRedis(RedisConnection redis) throws DataAccessException { redis.bgReWriteAof(); return null; } }); }
From source file:com.zxy.commons.cache.RedisHelper.java
/** * Start an {@literal Append Only File} rewrite process on server. * <p>//from ww w. j a v a 2s. c o m * See http://redis.io/commands/bgrewriteaof * * @since 1.3 */ public void bgReWriteAof() { redisTemplate.execute(new RedisCallback<Void>() { @Override public Void doInRedis(RedisConnection redis) throws DataAccessException { redis.bgReWriteAof(); return null; } }); }