liquidcache
v2.0.0
Published
[](https://github.com/FlaringPhoenix/LiquidCache/actions/workflows/codeql-analysis.yml)  ;
// Set a value in the cache
cache.set('name', 'FlaringPhoenix');
// Retrieve a value from the cache
const value = cache.get('name'); // 'FlaringPhoenix'
// Remove a value from the cache
cache.delete('name');
// Set a value in the cache with an expiration time (in milliseconds)
cache.set('name', 'FlaringPhoenix', 5000);
// After 5 seconds, 'name' will be automatically removed from the cacheSupport
If you need help with configuring or using LiquidCache, please open an issue here.
Contributing
Contributions are welcome! For significant changes, please open an issue first to discuss what you would like to change. Don't forget to update tests as necessary.
License
This project is licensed under the MIT License - see the LICENSE file for details.
