nimbus (1.2.4) | 2018-01-25 20:02 |
nimbus-sample (1.2.4) | 2018-01-26 17:06 |
jp.ossc.nimbus.service.cache.SerializedMemoryCacheMapServiceは、直列化してメモリにキャッシュするCacheMap実装サービスです。
このサービスは、複合的なサービスで、以下のサービスを下位サービスとして使用します。
下位サービスインタフェース | 用途 |
jp.ossc.nimbus.service.cache.OverflowController | あふれ制御を行う。 |
jp.ossc.nimbus.service.cache.CacheMap | 永続化先となるキャッシュ。 |
以下に簡単なサービス定義を示します。
- <?xml version="1.0" encoding="Shift_JIS"?>
- <!DOCTYPE server PUBLIC
- "-//Nimbus//DTD Nimbus 1.0//JA"
- "http://nimbus.sourceforge.jp/dtd/nimbus-service_1_0.dtd">
- <server>
- <manager>
- <!-- 直列化してメモリに情報をキャッシュするCacheMapサービス -->
- <service name="Cache"
- code="jp.ossc.nimbus.service.cache.SerializedMemoryCacheMapService"/>
- </manager>
- </server>