82838485868788
* @param diskStorePath disk path to store data in * @return a fully initialized store */ public static Store create( Ehcache cache, String diskStorePath ) { return create( cache, diskStorePath, new UnboundedPool(), new UnboundedPool() ); }
108109110111112113114115116117118
synchronized ( OFFHEAP_POOLS ) { pool = OFFHEAP_POOLS.get( manager ); if ( pool == null ) { pool = new UnboundedPool(); OFFHEAP_POOLS.put( manager, pool ); } } return pool; }
123124125126127128129
159160161162163164165166167168169