Skip to content

Instantly share code, notes, and snippets.

@wburns
Last active September 29, 2017 20:57
RemoteCache remoteCache = ...
// This was a copy of all keys in memory on your client!
Set<K> keys = remoteCache.keySet();
// Can't do this as it is an immutable copy
keys.remove(someKey);
// Didn't support any of these
remoteCache.entrySet();
remoteCache.values();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment