Reputation: 53
We want to configure near cache on client so that we can handle high TPS items and avoid network call to server. But most of our data access operation are using Entry Processor because our object size is big & we want to return small subset of data from server.
But according to documentation, Near Cache works only when you access data via map.get(k) or cache.get(k) methods.
Is it possible to near cache selected keys? I know its not possible but just want to confirm
Upvotes: 0
Views: 403
Reputation: 6094
No it is not possible, you can, however, have a look at the Continuous Query Caching feature (something like a clientside materialized view), which might help depending on the EntryProcessor operation you do. http://docs.hazelcast.org/docs/3.8.4/manual/html-single/index.html#continuous-query-cache
Upvotes: 1