In my project i use infinispan to manage my data and improve the performance, so i have a problem is when we stop de server and restart it all my data are deleted ans it's normal beacause its a cache.
so i demand you if you have a sugggestion for me for saving my data of my application even if the server is stopped ?
I searched in the internet , i found a lot of solution like using database with infinispan or store the data into a file like using (filecacheStore, jdbccachestore, casassandraCachedatastore) and i dont know which one is the best solution!
thank you very much in advance for your reply.
There's a multitude of options and none is best for all use-cases; that's why there are the options. You haven't said much about your app needs.
1) Use persistent cache store (single file store is the simplest option probably). This is and OOTB solution.
2) Before shutdown fetch and persist all data from your app (use streams API to iterate through), and upload them after boot. This does not add any overhead during runtime but requires you to handle the process yourselves.
3) Use cluster of nodes and always keep some nodes with the data up. However, backups (either via 1) or 2)) might be advisable anyway.