Esempio n. 1
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6668,
                     REDIS_STORAGE_SERVER_PASSWORD='******')
     storage = RedisStorage(
         Context(config=config, server=get_server('ACME-SEC')))
     storage.put(IMAGE_URL % 10001, IMAGE_BYTES)
     storage.remove(IMAGE_URL % 10001)
     return self.parent.connection.get(IMAGE_URL % 10001)
Esempio n. 2
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6668, REDIS_STORAGE_SERVER_PASSWORD='******')
     storage = RedisStorage(Context(config=config, server=get_server('ACME-SEC')))
     return storage.remove(IMAGE_URL % 10001)
Esempio n. 3
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6668, REDIS_STORAGE_SERVER_PASSWORD='******')
     storage = RedisStorage(Context(config=config, server=get_server('ACME-SEC')))
     storage.put(IMAGE_URL % 10001, IMAGE_BYTES)
     storage.remove(IMAGE_URL % 10001)
     return self.parent.connection.get(IMAGE_URL % 10001)
Esempio n. 4
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6668,
                     REDIS_STORAGE_SERVER_PASSWORD='******')
     storage = RedisStorage(
         Context(config=config, server=get_server('ACME-SEC')))
     return storage.remove(IMAGE_URL % 10001)