Dalli v1.1.4 Release Notes

    • 0️⃣ Use 127.0.0.1 instead of localhost as default to avoid IPv6 issues
    • Extend DalliStore's :expires_in when :race_condition_ttl is also used.
    • 🛠 Fix :expires_in option not propogating from DalliStore to Client, GH-136
    • ➕ Added support for native Rack session store. Until now, Dalli's session store has required Rails. Now you can use Dalli to store sessions for any Rack application.

      require 'rack/session/dalli' use Rack::Session::Dalli, :memcache_server => 'localhost:11211', :compression => true