Re: How sql works for near cache

2019-12-10 Thread Stanislav Lukyanov
Not out of the box but you could use SQL or ScanQuery for that. With SQL: SELECT _key FROM mycache (given that your cache is SQL-enabled). With ScanQuery: cache.query(new ScanQuery(), Cache.Entry::getKey) (may need to fix type errors to compile this) Stan On Wed, Dec 4, 2019 at 2:36 AM

Re: How sql works for near cache

2019-12-10 Thread Ilya Kasnacheev
Hello! You can use cache.localEntries(CachePeekMode.NEAR); Regards, -- Ilya Kasnacheev ср, 4 дек. 2019 г. в 02:36, Hemambara : > Is there any way we can get complete keyset or values from a near cache. > Something like cache.keyset() > > > > -- > Sent from: http://apache-ignite-users.70518.x6

Re: How sql works for near cache

2019-12-03 Thread Hemambara
Is there any way we can get complete keyset or values from a near cache. Something like cache.keyset() -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: How sql works for near cache

2019-12-03 Thread Evgenii Zhuravlev
Hi, Near cache makes sense only for key-value access, SQL doesn't work with near caches at all. Evgenii вт, 3 дек. 2019 г. в 04:20, Hemambara : > If I run sql with out where condition on near caches, query will hit server > node correct ? It wont fetch from near cache in local node. Is this a t

How sql works for near cache

2019-12-03 Thread Hemambara
If I run sql with out where condition on near caches, query will hit server node correct ? It wont fetch from near cache in local node. Is this a true statement? Ex: select _key from cachename; -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/