Reputation: 194
I want to find out some of below question for Ignite Cache
Note: I am using the Cache expiration policy as the RAM + persistence file. So if not found in cache then it will go to the persistence file and if not found there then only go to the database(for e.g. SQL).
I am trying to achieve the above operation using C# thin client API.
Upvotes: 0
Views: 162
Reputation: 2425
Currently Ignite does not provide such public API.
There is an open Ignite ticket 7641 you may take a look into.
Also it's not clean why do you mix native and a 3rd party persistence. Ignite will handle expiration by it's own with both in-memory and persisted storage.
You can take a look for a suitable configuration in a documentation
Upvotes: 1