DUMP
redis 支持序列化,使用DUMP命令来序列化给定key的值,语法如下:
DUMP key
示例 - 序列化say。
redis> SET say "hello world!"
OK
redis> DUMP say
"\x00\x15hello world!\x06\x00E\xa0Z\x82\xd8r\xc1\xde"
redis> DUMP not-exists-key
(nil)
执行DUMP命令序列化成功后,将返回被序列化的值,若key不存在,则返回 nil 。
请将website序列化。