X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e09b187cae178c000a683635d408cab72dc3d35b..d3bf4149e09053436d8d266952c49bb8f7ef6946:/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