chevy wrote > I am adding data into a map and loading it to cache. But when I do that > using cache.put() method, all my column names gets added as metadata and > values in items. How can I get my results as shown above i.e., key : value > format.
Can you show the code snippets of what you're doing? I still don't understand. chevy wrote > Also, I keep updating data every hour, should I destroy cache and create > again or just do cache.put again? cache.put updates a single entry. If you want to remove all the data first, then destroy the cache. chevy wrote > I have "location" parameter inside "tdy", "tdy.hourlysales" and "yst" > keys. Is it possible to query using "location" value and get these data > specific to that location. My final map I am adding to cache looks like > this - > Map<String, Tdy.class>() > Map<String, Yst.class>() You can achieve this with SQL queries: https://apacheignite.readme.io/docs/sql-queries -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Way-to-save-Multiple-queries-results-for-further-manipulation-tp7189p7218.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
