No commit activity in last 3 years
No release in over 3 years
A Rails cache store implementation for localmemcache
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

NOT READY YET! COME BACK IN SOME DAYS.

LocalmemcacheStore¶ ↑

LocalmemcacheStore is an ActiveSupport::Cache::Store implementation to be able to use Localmemcache in Rails.

Localmemcache is an ultra-fast and lightweight alternative to Memcached for your Rails application. Localmemcache runs inside your Rails processes, so you don’t need to run any extra daemons. The configuration is done inside your app and is an absolutely no-brainer. As the name says, the cache can only be shared on your local machine (at the time), but for your small apps scaling/networking often is not needed. Thanks to Rails’ Cache::Store interface, switching later is no big deal.

Please read the requirements of Localmemcache carefully! In production you should use a 64bit Linux variant. Developing on Mac OS X is okay, the missing sparse file support of HFS+ is not that problem as long as you have enough free space on your disk.

Installation and usage¶ ↑

Rails::Initializer.run do |config|
  [...]
  config.gem 'localmemcache_store', :source => 'http://gemcutter.org' 
  config.cache_store = :localmemcache_store
end

Next, install the gem:

$ sudo gem install localmemcache_store --source http://gemcutter.org

Done. Now enjoy your superfast new cache store!

Configuration¶ ↑

There are configuration defaults to start quickly, but you should consider these two parameters:

  • :namespace: Namespace to avoid name collisions when running multiple Localmemcache environments on one machine. (Defaults to :lmc_store.)

  • :size_mb: Specify the cache size in megabytes. Since the memory is used only virtually, you can feel free to use great values like 4096 ;-). Remember that this eats up your address space on 32bit systems. (Defaults to 64).

A configuration could look like this:

config.cache_store = :localmemcache_store,
                     { :namespace => 'testapp', :size_mb => 256 }

Further usage¶ ↑

You can find a good Rails caching intro at RailsGuides, they do a better job than me ;-).

The only specific enhancement with the ActiveSupport::Cache::Store implementation is the ability to use time based expiration in just the way the Memcached implementation does. See ActiveSupport::Cache::LocalmemcacheStore#write.

Feedback¶ ↑

Please provide feedback! Your ideas, error reports and feature requests are very welcome. Please contact me via Github.


Copyright © 2009 Florian Dütsch, released under the MIT license