use of jakarta.nosql.keyvalue.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class KeyValueConfigurationTest method shouldCreateKeyValueFactory.
@Test
public void shouldCreateKeyValueFactory() {
Map<String, Object> map = new HashMap<>();
map.put("memcached.host.1", "localhost:11211");
BucketManagerFactory managerFactory = configuration.get(Settings.of(map));
assertNotNull(managerFactory);
}
use of jakarta.nosql.keyvalue.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class RiakKeyValueConfigurationTest method shouldCreateKeyValueFactoryFromFile.
@Test
public void shouldCreateKeyValueFactoryFromFile() {
BucketManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of jakarta.nosql.keyvalue.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class RedisConfigurationTest method shouldCreateKeyValueFactory.
@Test
public void shouldCreateKeyValueFactory() {
Map<String, String> map = new HashMap<>();
map.put("redis-master-hoster", "localhost");
BucketManagerFactory managerFactory = configuration.getManagerFactory(map);
assertNotNull(managerFactory);
}
use of jakarta.nosql.keyvalue.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class RedisConfigurationTest method shouldCreateKeyValueFactoryFromFile.
@Test
public void shouldCreateKeyValueFactoryFromFile() {
BucketManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of jakarta.nosql.keyvalue.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class KeyValueConfigurationTest method shouldCreateKeyValueFactoryFromFile.
@Test
public void shouldCreateKeyValueFactoryFromFile() {
BucketManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
Aggregations