NoMethodError using Memcached Sinatra-style
- by sevennineteen
I've just installed Memcached on my Mac and updated my Sinatra app configuration as described in Heroku's documentation, but I'm getting a NoMethodError when trying to use the hash-based syntax they specify:
>> CACHE['color'] = 'blue'
>> CACHE['color']
Using explicit get and set methods as below seems to work fine.
>>…