use set rather than put, recommendation from hazelcast

Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
olivier lamy 2017-06-08 12:54:47 +10:00 committed by Joakim Erdfelt
parent d241b1193a
commit b249ce8b36
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public class HazelcastSessionDataStore
public void doStore( String id, SessionData data, long lastSaveTime )
throws Exception
{
this.sessionDataMap.put( getCacheKey( id ), data);
this.sessionDataMap.set( getCacheKey( id ), data);
}
@Override