I opt to use this gem: https://github.com/fauna/memcached
I use the following settings in my environment:
$memcached = Memcached::Rails.new(cache_server,
:namespace => "os-",
:tcp_nodelay => true,
# disable nagle algorithm
:no_block => true)
# dont block on writes
ActionController::Base.cache_store = :mem_cache_store, $memcached
$session_memcached = Memcached::Rails.new(cache_server,
:namespace => "os-",
:tcp_nodelay => true,
# disable nagle algorithm
:no_block => true)
ActionController::Base.cache_store =
:mem_cache_store, $memcached
ActionController::Base.session_store = :mem_cache_store
ActionController::Base.session_options[:cache] = $session_memcached
in after_fork i have
$memcached.reset
$session_memcached.reset
Clifton
On Thu, Mar 10, 2011 at 11:16 AM, Troex Nevelin <[email protected]> wrote:
> What is a right code for resetting memcache connection in after_fork for
> Rails 2.3 with "preload_app true" on REE?
>
> The only configurations about memcache in my app are:
>
> config/initializers/session_store.rb:
> ActionController::Base.session_store = :mem_cache_store
>
> config/environment.rb:
> config.cache_store = :mem_cache_store
>
>
> I tried:
> Rails.cache.reset
>
> But it fails to start, looks like this code is for Rails3 only
> _______________________________________________
> Unicorn mailing list - [email protected]
> http://rubyforge.org/mailman/listinfo/mongrel-unicorn
> Do not quote signatures (like this one) or top post when replying
>
_______________________________________________
Unicorn mailing list - [email protected]
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying