thanks Val for quick response.
1. Regarding 'read-only cache', below is code snippet from my cache config.
As my application is a reporting application, the writes to database will
not happen via my cache.
hence i set 'setWriteThrough' to false and set 'setReadThrough' to true.
regarding the - configure expirations for cache entries.
what happens when the cache is expired ? underlying query will be executed
again by the data streamer and data will be loaded into cache again ? please
clarify.
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.
Hi Val
Thank you for responding to my post. I agree with the idea of using
Ignite for both read/write through cache.
However in my application, writes to persistent store happens through
a different application.
My application is a reporting application, where I need to stream the
data, apply com
can somebody help me on this.
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Need-help-on-the-data-streaming-tp8714p8736.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.
few questions on the data streaming. below is my scenario.
>> i have to stream data continuously in the Cache, the data that is
>> inserted/deleted today into my table.
so, should i run the query that fetches just todays data with
created/updated date as today in a while loop?
>> what about th