Hi, Use IgniteCache.withSkipStore() and then just invoke method you wanted - it will disable read-through write-through behavior.
Evgenii 2018-05-02 13:46 GMT+03:00 begineer <[email protected]>: > HI Guys, > I am using cache.get() on ignite cache. Its readThrough cache so it means > cache.get() will load entry from cacheStore if not in cache. But in one > place, I want to get only from cache, so it should not go to backstore to > load the entry. Is there a get version which accomplish that. Does > cache.containsKey() goes to cacheStore if key is not in cache. > > Just like cache.remove() delete entry from cacheStore but cache.clear() > removes entry just from cache. > > Thanks in advance > > > > > -- > Sent from: http://apache-ignite-users.70518.x6.nabble.com/ >
