I want to use ignite as a pure in memory db(all data/indexes is in memory) with persistence to disk (similar to Redis), when the service restarts all the data/indexes should be loaded into memory again (automatic warmup).
Update: There's actually two questions inline here:
- Can I guarantee that the data is in memory including indexes? (AFAIK persistent-store doesn't guarantee it).
- Can I warm the cache(including indexes) without writing Java? (implementing CacheStore as described here: https://apacheignite.readme.io/docs/data-loading#section-ignitecacheloadcache)