Hello all,
I have been using Memcache with my rails application to store certain
key value pair.... I am using Dalli gem for the same... So 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 on whats going on here?
Thanks!
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit https://groups.google.com/groups/opt_out.