Displaying 1 result from an estimated 1 matches for "desidime".
Did you mean:
deside
2012 Aug 08
1
Memcache and Rails - Storing String as values.
...Here''s what i
do from console:
require ''dalli''
dc = Dalli::Client.new(''remoteserver:11211'')
dc.set(''example_link'', "http://www.google.com")
=> true
value = dc.get(''example_link'')
=> "http://www.desidime.com"
Everything looks good. However if i telnet to memcache and run this
command:
get example_link
VALUE example_link 1 33
I"http://www.google.com:ET
Instead of returning the string, it returns some random garbage
prepended and appended to value (I, :ET and so on)
Anyone can guide o...