use of org.eclipse.jnosql.communication.memcached.keyvalue.model.User in project jnosql-diana-driver by eclipse.
the class MemcachedBucketManagerTest method shouldMultiGet.
@Test
public void shouldMultiGet() {
User user = new User("otavio");
KeyValueEntity keyValue = KeyValueEntity.of("otavio", Value.of(user));
keyValueEntityManager.put(keyValue);
assertNotNull(keyValueEntityManager.get("otavio"));
}
Aggregations