I am using infinispan as cache provider. I have a flat file containing key (long) value (string) pairs. Upon application load time, i want an embedded infinispan cache to start with flat file as the storage so that the contents of the flat file is the system of record and the contents of the file is cached by infinispan. As new records get added to cache, i want the flat file to be appended. Is it possible with infinispan?
相关问题
- jsp caching tag library
- How can we cache HLS video url once streamed
- Hibernate cache level 1
- HTTPS images not caching
- Caching usable in both WCF and ASP .NET applicatio
相关文章
- Is there a google API to read cached content? [clo
- AWS API Gateway caching ignores query parameters
- Check if url is cached webview android
- WebView's LOAD_NO_CACHE setting still saves fi
- QML Loader not shows changes on .qml file
- UnitOfWork in Action Filter seems to be caching
- Python: Is there any reason *not* to cache an obje
- Caching of WebConfigurationManager.AppSettings?
Principially yes, you have to implement you own cache loader/store that will read and modify that file. Checkout SingleFileStore for a simple implementation of the SPI (SingleFileStore is general-purpose file-based store).