X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c016bf6c153eb1c416b2104874bf2e44c2f55913..501d13e1c0936cc3ba3d9639620517bae34e5784:/config/initializers/openid.rb diff --git a/config/initializers/openid.rb b/config/initializers/openid.rb index 966164b3e..2a6de16b2 100644 --- a/config/initializers/openid.rb +++ b/config/initializers/openid.rb @@ -1 +1,7 @@ -OpenIdAuthentication.store = :file +if defined?(MEMCACHE_SERVERS) + require "openid/store/memcache" + + OpenIdAuthentication.store = OpenID::Store::Memcache.new(Dalli::Client.new(MEMCACHE_SERVERS, :namespace => "rails")) +else + OpenIdAuthentication.store = :file +end