Skip to content
Snippets Groups Projects
Commit e723d0c1 authored by ethiraj krishnamanaidu's avatar ethiraj krishnamanaidu
Browse files

Merge branch 'fix_list_cache' into 'master'

Fix list cache

See merge request !32
parents 05a9a67a 5036eceb
No related branches found
No related tags found
1 merge request!32Fix list cache
Pipeline #21086 passed
......@@ -10,6 +10,7 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import javax.inject.Named;
import java.util.List;
@Configuration
public class RedisConfig {
......@@ -44,6 +45,11 @@ public class RedisConfig {
return new RedisCache<>(host, port, password, expiration, database, String.class, PartitionInfo.class);
}
@Bean
public RedisCache<String, List<String>> partitionListCache(@Named("REDIS_HOST") String host, @Named("REDIS_PASSWORD") String password) {
return new RedisCache(host, port, password, expiration, database, String.class, List.class);
}
}
@Configuration
......@@ -64,5 +70,10 @@ public class RedisConfig {
return new RedisCache<>(host, port, expiration, database, String.class, PartitionInfo.class);
}
@Bean
public RedisCache<String, List<String>> partitionListCache(@Named("REDIS_HOST") String host) {
return new RedisCache(host, port, expiration, database, String.class, List.class);
}
}
}
package org.opengroup.osdu.partition.provider.azure.di;
import org.opengroup.osdu.core.common.cache.VmCache;
import org.opengroup.osdu.partition.model.PartitionInfo;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
......@@ -12,6 +13,7 @@ import java.util.List;
public class VmConfig {
@Bean
@ConditionalOnProperty(value = "cache.provider", havingValue = "vm", matchIfMissing = true)
public VmCache<String, List<String>> partitionListCache(@Value("${cache.expiration}") final int expiration,
@Value("${cache.maxSize}") final int maxSize) {
return new VmCache<>(expiration * 60, maxSize);
......@@ -19,8 +21,8 @@ public class VmConfig {
@Bean
@ConditionalOnProperty(value = "cache.provider", havingValue = "vm", matchIfMissing = true)
public VmCache<String, List<String>> partitionServiceCache(@Value("${cache.expiration}") final int expiration,
@Value("${cache.maxSize}") final int maxSize) {
public VmCache<String, PartitionInfo> partitionServiceCache(@Value("${cache.expiration}") final int expiration,
@Value("${cache.maxSize}") final int maxSize) {
return new VmCache<>(expiration * 60, maxSize);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment