mirror of
https://github.com/kennethreitz-archive/redi.git
synced 2026-06-05 23:40:18 +00:00
18 lines
170 B
Python
18 lines
170 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import redi
|
|
|
|
|
|
|
|
from redis import Redis
|
|
|
|
v = redi.value('png')
|
|
|
|
v.value = 'me'
|
|
|
|
print repr(v.value)
|
|
# v.expire(6)
|
|
|
|
v.delete()
|
|
|
|
print repr(v.value) |