Created
May 10, 2015 18:03
-
-
Save carlossanchezp/4e028d3cf37f42f0672a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Redis only stores strings as values. If you want to store an object, you can use a serialization mechanism such as JSON: | |
require "json" | |
redis.set "foo", [1, 2, 3].to_json | |
# => OK | |
JSON.parse(redis.get("foo")) | |
# => [1, 2, 3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment