use set rather than put, recommendation from hazelcast
Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
parent
d241b1193a
commit
b249ce8b36
|
@ -110,7 +110,7 @@ public class HazelcastSessionDataStore
|
||||||
public void doStore( String id, SessionData data, long lastSaveTime )
|
public void doStore( String id, SessionData data, long lastSaveTime )
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
this.sessionDataMap.put( getCacheKey( id ), data);
|
this.sessionDataMap.set( getCacheKey( id ), data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue