mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
34 lines
702 B
Java
34 lines
702 B
Java
package org.tests.basic;
|
|
|
|
import io.ebean.BaseTestCase;
|
|
import io.ebean.Ebean;
|
|
import org.tests.model.basic.Country;
|
|
import org.tests.model.basic.ResetBasicData;
|
|
import org.junit.Assert;
|
|
import org.junit.Test;
|
|
|
|
import java.util.Map;
|
|
|
|
public class TestLoadBeanCache extends BaseTestCase {
|
|
|
|
@Test
|
|
public void testLoad() {
|
|
|
|
ResetBasicData.reset();
|
|
|
|
Map<String, Country> map = Ebean.find(Country.class)
|
|
.setLoadBeanCache(true)
|
|
.setUseQueryCache(true)
|
|
.setReadOnly(true)
|
|
.order("name")
|
|
.findMap();
|
|
|
|
Country loadedNz = map.get("NZ");
|
|
|
|
// this will hit the cache
|
|
Country nz = Ebean.find(Country.class, "NZ");
|
|
|
|
Assert.assertTrue(loadedNz == nz);
|
|
}
|
|
}
|