I\'m using python and the Image module(PIL) to process images.
I want to store the raw bits stream of the image object to redis so that others can directly read the imag
import redis r = redis.StrictRedis() img = open("/path/to/img.jpeg","rb").read() r.set("bild1",img)
works here too!