We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm building a gem and added memcached as a dependency but then when I add it:
require "coinmarketcap/wrapper/version" require "coinmarketcap/wrapper/api_client" require "coinmarketcap/wrapper/coin" require "coinmarketcap/wrapper/market_data" require 'json' require 'api_cache' require "moneta" require "memcached" module Coinmarketcap module Wrapper BASE_API_URL = "https://api.coinmarketcap.com/v1" APICache.store = Moneta.new(:Memcached) end end
and then run bin/console I get an error:
bin/console
Memcached::ServerIsMarkedDead: Key {"9aaf5eb3d6edd10f12643e3087b84d21"=>"127.0.0.1:11211:8"}
is there a configuration I am missing?
The text was updated successfully, but these errors were encountered:
that means you have to make sure that Memcached server in your machine is running
ps aux | grep memcache
Sorry, something went wrong.
No branches or pull requests
I'm building a gem and added memcached as a dependency but then when I add it:
and then run
bin/console
I get an error:Memcached::ServerIsMarkedDead: Key {"9aaf5eb3d6edd10f12643e3087b84d21"=>"127.0.0.1:11211:8"}
is there a configuration I am missing?
The text was updated successfully, but these errors were encountered: