All Projects → salahsheikh → libcache

salahsheikh / libcache

Licence: MIT license
A caching library that provides an in-memory and file based cache for Ruby

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to libcache

cache
🗃 Generic cache use and cache manage. Provide a unified usage API by packaging various commonly used drivers. Support File, Memory, Redis, Memcached and more. Go 通用的缓存使用库,通过包装各种常用的驱动,来提供统一的使用API,便于使用。
Stars: ✭ 146 (+484%)
Mutual labels:  file-cache, memory-cache
infinispan-spring-boot
Infinispan Spring Boot starter. Use this starter in your Spring Boot applications to help you use Infinispan+Spring integration in embedded and client/server mode
Stars: ✭ 61 (+144%)
Mutual labels:  caching
keyv
Simple key-value storage with support for multiple backends.
Stars: ✭ 202 (+708%)
Mutual labels:  caching
hazelcast-csharp-client
Hazelcast .NET Client
Stars: ✭ 98 (+292%)
Mutual labels:  caching
oc-speedy-plugin
Website optimization plugin for October CMS
Stars: ✭ 18 (-28%)
Mutual labels:  caching
performance-dashboard
Magento 2 Performance Dashboard
Stars: ✭ 60 (+140%)
Mutual labels:  caching
robodux
caching in redux made simple
Stars: ✭ 98 (+292%)
Mutual labels:  caching
grav-plugin-advanced-pagecache
Grav AdvancedPageCache Plugin
Stars: ✭ 19 (-24%)
Mutual labels:  caching
loQL
loQL is a lightweight, open source npm package that caches API requests with service workers, unlocking performance gains and enabling offline use.
Stars: ✭ 49 (+96%)
Mutual labels:  caching
cms
A general purpose java cms
Stars: ✭ 23 (-8%)
Mutual labels:  caching
cachecontrol
Minimal HTTP cache management library in Scala
Stars: ✭ 13 (-48%)
Mutual labels:  caching
FYCachedURLAsset
Enhanced AVURLAsset with seamless cache layer
Stars: ✭ 18 (-28%)
Mutual labels:  caching
pony-ssh
vscode plugin for fast remote editing over ssh
Stars: ✭ 26 (+4%)
Mutual labels:  caching
hybrid-disk-cache
A hybrid disk cache library that utilized both the solid SQLite3 and file system.
Stars: ✭ 19 (-24%)
Mutual labels:  file-cache
SwiftlyCache
SwiftlyCache is a thread safe IOS general cache Library
Stars: ✭ 84 (+236%)
Mutual labels:  memory-cache
asgi-caches
Server-side HTTP caching for ASGI applications, inspired by Django's cache framework
Stars: ✭ 18 (-28%)
Mutual labels:  caching
LruClockCache
A low-latency LRU approximation cache in C++ using CLOCK second-chance algorithm. Multi level cache too. Up to 2.5 billion lookups per second.
Stars: ✭ 35 (+40%)
Mutual labels:  caching
hoardr
⚠️ ARCHIVED ⚠️ manage cached files
Stars: ✭ 19 (-24%)
Mutual labels:  caching
sfsdb
Simple yet extensible database you already know how to use
Stars: ✭ 36 (+44%)
Mutual labels:  caching
PHP-File-Cache
Light, simple and standalone PHP in-file caching class
Stars: ✭ 34 (+36%)
Mutual labels:  caching

Libcache Build Status Gem Version

A simple caching library that provides flexible and powerful caching features such as in-memory and file based caching similar to Guava's Caching system.

Documentation

Features

  • Supports in-memory cache
  • Supports filesystem based cache
  • Limiting the size of the cache through eviction based on a specified max size
  • Allows for expiration behavior based on the time since an object was placed in the cache or when it was last accessed/updated
  • Allows custom refresh functions for reloading expensive data once it has been discarded

Usage

For an in memory Cache with an expiry time of 3 seconds, a max size of 500, and refresh method where 100 is added to the key (of course more sophisticated value retrieving operations will replace this method), and a function set_post_get which defines a function to be executed after the retrieval of a key. These additions are optional and configurable. The simplest form of an in-memory cache is CacheBuilder.with(Cache).build

cache = CacheBuilder.with(Cache).set_expiry('3s').set_max(500).set_refresh(lambda { |key| key + 100 }).set_post_get(lambda { |*key| puts "Retrieved #{key}!" }).build

...or for an file-based Cache with an expiry time of 3 seconds, store location at 'foo\bar', and refresh method where 100 is added to the key, and a function set_post_get which defines a function to be executed after the retrieval of a key. Of course these additions are optional and configurable. The only thing that is non-removable is the set_store method. The simplest form of a File cache is CacheBuilder.with(FileCache).set_store('foo\bar').build

cache = CacheBuilder.with(FileCache).set_store('foo\bar').set_expiry('3s').set_max(500).set_refresh(lambda { |key| key + 100 }).set_post_get(lambda { |*key| puts "Retrieved #{key}!" }).build
cache.put(1, 5)
cache.get(1) # will return 5, also prints "Retrieved [1]!" to the console, as per the function defined in the set_post_get method
sleep 4 # note that this is more than the expiry time
cache.get(1) # will return 105 as the data has been refreshed, also prints "Retrieved [1]!" 
cache.exists?(1) # will return true. if there is no set_refresh method provided then it will return false

cache.put("key123", [1,2,true])
pp cache.get("key123") # prints '[1, 2, true]' preserves type, prints "Retrieved ["key123"]!"

# delete all data on exit of program
# if the file cache was used, deletes all left over files. #cache.invalidate_all can be called at any point in runtime.
at_exit do
  cache.invalidate_all
end

For more on what kind of strings are understood as times, like "3s", click here.

Installation

Add this line to your application's Gemfile:

gem 'libcache'

And then execute:

$ bundle

Or install it yourself as:

$ gem install libcache

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/silk8192/libcache. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].