Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Cache class to CacheConfig #3942

Merged
merged 11 commits into from
Aug 29, 2024
4 changes: 2 additions & 2 deletions src/main/java/redis/clients/jedis/JedisCluster.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import redis.clients.jedis.providers.ClusterConnectionProvider;
import redis.clients.jedis.csc.Cache;
import redis.clients.jedis.csc.CacheConfig;
import redis.clients.jedis.csc.CacheProvider;
import redis.clients.jedis.csc.CacheFactory;
import redis.clients.jedis.util.JedisClusterCRC16;

public class JedisCluster extends UnifiedJedis {
Expand Down Expand Up @@ -223,7 +223,7 @@ private JedisCluster(ClusterConnectionProvider provider, int maxAttempts, Durati

@Experimental
public JedisCluster(Set<HostAndPort> hnp, JedisClientConfig jedisClientConfig, CacheConfig cacheConfig) {
this(hnp, jedisClientConfig, new CacheProvider().getCache(cacheConfig));
this(hnp, jedisClientConfig, new CacheFactory().getCache(cacheConfig));
}

@Experimental
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/redis/clients/jedis/JedisPooled.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import redis.clients.jedis.annots.Experimental;
import redis.clients.jedis.csc.Cache;
import redis.clients.jedis.csc.CacheConfig;
import redis.clients.jedis.csc.CacheProvider;
import redis.clients.jedis.csc.CacheFactory;
import redis.clients.jedis.providers.PooledConnectionProvider;
import redis.clients.jedis.util.JedisURIHelper;
import redis.clients.jedis.util.Pool;
Expand Down Expand Up @@ -81,7 +81,7 @@ public JedisPooled(final HostAndPort hostAndPort, final JedisClientConfig client

@Experimental
public JedisPooled(final HostAndPort hostAndPort, final JedisClientConfig clientConfig, CacheConfig cacheConfig) {
this(hostAndPort, clientConfig, new CacheProvider().getCache(cacheConfig));
this(hostAndPort, clientConfig, new CacheFactory().getCache(cacheConfig));
}

@Experimental
Expand Down Expand Up @@ -392,7 +392,7 @@ public JedisPooled(final HostAndPort hostAndPort, final JedisClientConfig client
@Experimental
public JedisPooled(final HostAndPort hostAndPort, final JedisClientConfig clientConfig, CacheConfig cacheConfig,
final GenericObjectPoolConfig<Connection> poolConfig) {
this(hostAndPort, clientConfig, new CacheProvider().getCache(cacheConfig), poolConfig);
this(hostAndPort, clientConfig, new CacheFactory().getCache(cacheConfig), poolConfig);
}

@Experimental
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/redis/clients/jedis/JedisSentineled.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import redis.clients.jedis.annots.Experimental;
import redis.clients.jedis.csc.Cache;
import redis.clients.jedis.csc.CacheConfig;
import redis.clients.jedis.csc.CacheProvider;
import redis.clients.jedis.csc.CacheFactory;
import redis.clients.jedis.providers.SentineledConnectionProvider;

public class JedisSentineled extends UnifiedJedis {
Expand All @@ -19,7 +19,7 @@ public JedisSentineled(String masterName, final JedisClientConfig masterClientCo
@Experimental
public JedisSentineled(String masterName, final JedisClientConfig masterClientConfig, CacheConfig cacheConfig,
Set<HostAndPort> sentinels, final JedisClientConfig sentinelClientConfig) {
this(masterName, masterClientConfig, new CacheProvider().getCache(cacheConfig),
this(masterName, masterClientConfig, new CacheFactory().getCache(cacheConfig),
sentinels, sentinelClientConfig);
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/redis/clients/jedis/UnifiedJedis.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import redis.clients.jedis.csc.Cache;
import redis.clients.jedis.csc.CacheConfig;
import redis.clients.jedis.csc.CacheConnection;
import redis.clients.jedis.csc.CacheProvider;
import redis.clients.jedis.csc.CacheFactory;
import redis.clients.jedis.exceptions.JedisException;
import redis.clients.jedis.executors.*;
import redis.clients.jedis.gears.TFunctionListParams;
Expand Down Expand Up @@ -100,7 +100,7 @@ public UnifiedJedis(HostAndPort hostAndPort, JedisClientConfig clientConfig) {

@Experimental
public UnifiedJedis(HostAndPort hostAndPort, JedisClientConfig clientConfig, CacheConfig cacheConfig) {
this(hostAndPort, clientConfig, new CacheProvider().getCache(cacheConfig));
this(hostAndPort, clientConfig, new CacheFactory().getCache(cacheConfig));
}

@Experimental
Expand Down
14 changes: 13 additions & 1 deletion src/main/java/redis/clients/jedis/csc/CacheConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ public class CacheConfig {
private int maxSize;
private Cacheable cacheable;
private EvictionPolicy evictionPolicy;
private Class cacheClass;

public int getMaxSize() {
return maxSize;
Expand All @@ -18,14 +19,19 @@ public EvictionPolicy getEvictionPolicy() {
return evictionPolicy;
}

public Class getCacheClass() {
return cacheClass;
}
public static Builder builder() {
return new Builder();
}

public static class Builder {
private int maxSize;
private final int DEFAULT_MAX_SIZE = 10000;
private int maxSize = DEFAULT_MAX_SIZE;
private Cacheable cacheable = DefaultCacheable.INSTANCE;
private EvictionPolicy evictionPolicy;
private Class cacheClass;

public Builder maxSize(int maxSize) {
this.maxSize = maxSize;
Expand All @@ -42,11 +48,17 @@ public Builder cacheable(Cacheable cacheable) {
return this;
}

public Builder cacheClass(Class cacheClass) {
this.cacheClass = cacheClass;
return this;
}

public CacheConfig build() {
CacheConfig cacheConfig = new CacheConfig();
cacheConfig.maxSize = this.maxSize;
cacheConfig.cacheable = this.cacheable;
cacheConfig.evictionPolicy = this.evictionPolicy;
cacheConfig.cacheClass = this.cacheClass;
return cacheConfig;
}
}
Expand Down
58 changes: 58 additions & 0 deletions src/main/java/redis/clients/jedis/csc/CacheFactory.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
package redis.clients.jedis.csc;

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;

import redis.clients.jedis.exceptions.JedisCacheException;

public class CacheFactory {

public Cache getCache(CacheConfig config) {
sazzad16 marked this conversation as resolved.
Show resolved Hide resolved
if (config.getCacheClass() == null) {
return new DefaultCache(config.getMaxSize(), config.getCacheable(), getEvictionPolicy(config));
}
return instantiateCustomCache(config);
}

private Cache instantiateCustomCache(CacheConfig config) {
try {
Constructor ctorWithCacheable = findConstructorWithCacheable(config.getCacheClass());
if (ctorWithCacheable != null) {
return (Cache) ctorWithCacheable.newInstance(config.getMaxSize(), getEvictionPolicy(config), config.getCacheable());
}
Constructor ctor = getConstructor(config.getCacheClass());
return (Cache) ctor.newInstance(config.getMaxSize(), getEvictionPolicy(config));
} catch (InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException | SecurityException e) {
throw new JedisCacheException("Failed to insantiate custom cache type!", e);
}
}

private Constructor findConstructorWithCacheable(Class customCacheType) {
return Arrays.stream(customCacheType.getConstructors())
.filter(
ctor -> Arrays.equals(ctor.getParameterTypes(), new Class[] { int.class, EvictionPolicy.class, Cacheable.class }))
.findFirst().orElse(null);
}

private Constructor getConstructor(Class customCacheType) {
try {
return customCacheType.getConstructor(int.class, EvictionPolicy.class);
} catch (NoSuchMethodException e) {
String className = customCacheType.getName();
throw new JedisCacheException(String.format(
"Failed to find compatible constructor for custom cache type! Provide one of these;"
// give hints about the compatible constructors
+ "\n - %s(int maxSize, EvictionPolicy evictionPolicy)\n - %s(int maxSize, EvictionPolicy evictionPolicy, Cacheable cacheable)",
className, className), e);
}
}

private EvictionPolicy getEvictionPolicy(CacheConfig config) {
if (config.getEvictionPolicy() == null) {
// It will be default to LRUEviction, until we have other eviction implementations
return new LRUEviction(config.getMaxSize());
}
return config.getEvictionPolicy();
}
}
23 changes: 0 additions & 23 deletions src/main/java/redis/clients/jedis/csc/CacheProvider.java

This file was deleted.

4 changes: 4 additions & 0 deletions src/main/java/redis/clients/jedis/csc/DefaultCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ protected DefaultCache(int maximumSize, Cacheable cacheable) {
this(maximumSize, new HashMap<CacheKey, CacheEntry>(), cacheable, new LRUEviction(maximumSize));
}

protected DefaultCache(int maximumSize, Cacheable cacheable, EvictionPolicy evictionPolicy) {
this(maximumSize, new HashMap<CacheKey, CacheEntry>(), cacheable, evictionPolicy);
}

protected DefaultCache(int maximumSize, Map<CacheKey, CacheEntry> map, Cacheable cacheable, EvictionPolicy evictionPolicy) {
super(maximumSize, cacheable);
this.cache = map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
package redis.clients.jedis.csc;

import static java.util.Collections.singleton;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;

import java.util.HashMap;
import java.util.Map;
import org.hamcrest.Matchers;
import org.junit.Test;

import redis.clients.jedis.JedisPooled;
Expand All @@ -15,73 +11,69 @@

public class AllowAndDenyListCacheableTest extends ClientSideCacheTestBase {

private static Cache createTestCache(Map<CacheKey, CacheEntry> map, Cacheable cacheable) {
Cache mapCache = new TestCache(map, cacheable);
return mapCache;
private static CacheConfig createConfig(Cacheable cacheable) {
return CacheConfig.builder().cacheable(cacheable).cacheClass(TestCache.class).build();
}

@Test
public void none() {
HashMap<CacheKey, CacheEntry> map = new HashMap<>();
try (JedisPooled jedis = new JedisPooled(hnp, clientConfig.get(),
createTestCache(map, new AllowAndDenyListWithStringKeys(null, null, null, null)),
singleConnectionPoolConfig.get())) {
createConfig(new AllowAndDenyListWithStringKeys(null, null, null, null)), singleConnectionPoolConfig.get())) {
Cache cache = jedis.getCache();
control.set("foo", "bar");
assertThat(map, Matchers.aMapWithSize(0));
assertEquals(0, cache.getSize());
assertEquals("bar", jedis.get("foo"));
assertThat(map, Matchers.aMapWithSize(1));
assertEquals(1, cache.getSize());
}
}

@Test
public void whiteListCommand() {
HashMap<CacheKey, CacheEntry> map = new HashMap<>();
try (JedisPooled jedis = new JedisPooled(hnp, clientConfig.get(),
createTestCache(map, new AllowAndDenyListWithStringKeys(singleton(Protocol.Command.GET), null, null, null)),
createConfig(new AllowAndDenyListWithStringKeys(singleton(Protocol.Command.GET), null, null, null)),
singleConnectionPoolConfig.get())) {
Cache cache = jedis.getCache();
control.set("foo", "bar");
assertThat(map, Matchers.aMapWithSize(0));
assertEquals(0, cache.getSize());
assertEquals("bar", jedis.get("foo"));
assertThat(map, Matchers.aMapWithSize(1));
assertEquals(1, cache.getSize());
}
}

@Test
public void blackListCommand() {
HashMap<CacheKey, CacheEntry> map = new HashMap<>();
try (JedisPooled jedis = new JedisPooled(hnp, clientConfig.get(),
createTestCache(map, new AllowAndDenyListWithStringKeys(null, singleton(Protocol.Command.GET), null, null)),
createConfig(new AllowAndDenyListWithStringKeys(null, singleton(Protocol.Command.GET), null, null)),
singleConnectionPoolConfig.get())) {
Cache cache = jedis.getCache();
control.set("foo", "bar");
assertThat(map, Matchers.aMapWithSize(0));
assertEquals(0, cache.getSize());
assertEquals("bar", jedis.get("foo"));
assertThat(map, Matchers.aMapWithSize(0));
assertEquals(0, cache.getSize());
}
}

@Test
public void whiteListKey() {
HashMap<CacheKey, CacheEntry> map = new HashMap<>();
try (JedisPooled jedis = new JedisPooled(hnp, clientConfig.get(),
createTestCache(map, new AllowAndDenyListWithStringKeys(null, null, singleton("foo"), null)),
singleConnectionPoolConfig.get())) {
createConfig(new AllowAndDenyListWithStringKeys(null, null, singleton("foo"), null)), singleConnectionPoolConfig.get())) {
control.set("foo", "bar");
assertThat(map, Matchers.aMapWithSize(0));
Cache cache = jedis.getCache();
assertEquals(0, cache.getSize());
assertEquals("bar", jedis.get("foo"));
assertThat(map, Matchers.aMapWithSize(1));
assertEquals(1, cache.getSize());
}
}

@Test
public void blackListKey() {
HashMap<CacheKey, CacheEntry> map = new HashMap<>();
try (JedisPooled jedis = new JedisPooled(hnp, clientConfig.get(),
createTestCache(map, new AllowAndDenyListWithStringKeys(null, null, null, singleton("foo"))),
singleConnectionPoolConfig.get())) {
createConfig(new AllowAndDenyListWithStringKeys(null, null, null, singleton("foo"))), singleConnectionPoolConfig.get())) {
Cache cache = jedis.getCache();
control.set("foo", "bar");
assertThat(map, Matchers.aMapWithSize(0));
assertEquals(0, cache.getSize());
assertEquals("bar", jedis.get("foo"));
assertThat(map, Matchers.aMapWithSize(0));
assertEquals(0, cache.getSize());
}
}
}
Loading
Loading