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 % 9999, IMAGE_BYTES)
     return storage.exists(IMAGE_URL % 9999)
Esempio n. 2
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6668,
                     REDIS_STORAGE_SERVER_PASSWORD='******',
                     STORES_CRYPTO_KEY_FOR_EACH_IMAGE=True)
     storage = RedisStorage(
         Context(config=config, server=get_server('ACME-SEC')))
     return storage.get_crypto(IMAGE_URL % 9999)
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 % 1, IMAGE_BYTES)
     return self.parent.connection.get(IMAGE_URL % 1)
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')))
     storage.put(IMAGE_URL % 7, IMAGE_BYTES)
     storage.put_detector_data(IMAGE_URL % 7, 'some-data')
     return storage.get_detector_data(IMAGE_URL % 7)
Esempio n. 5
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=6668,
                     REDIS_STORAGE_SERVER_PASSWORD='******',
                     STORES_CRYPTO_KEY_FOR_EACH_IMAGE=True)
     storage = RedisStorage(
         Context(config=config, server=get_server('')))
     storage.put(IMAGE_URL % 3, IMAGE_BYTES)
     storage.put_crypto(IMAGE_URL % 3)
Esempio n. 6
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=7778,
                     REDIS_STORAGE_SERVER_PASSWORD='******')
     storage = RedisStorage(
         Context(config=config, server=get_server('ACME-SEC')))
     storage.put(IMAGE_URL % 5, IMAGE_BYTES)
     storage.put_crypto(IMAGE_URL % 5)
     return storage.get_crypto(IMAGE_URL % 5)
Esempio n. 7
0
            def topic(self):
                config = Config(REDIS_STORAGE_SERVER_PORT=300,
                                REDIS_STORAGE_SERVER_PASSWORD='******',
                                REDIS_STORAGE_IGNORE_ERRORS=True)
                storage = RedisStorage(context=Context(
                    config=config, server=get_server('ACME-SEC')),
                                       shared_client=False)

                return storage
Esempio n. 8
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. 9
0
 def topic(self):
     config = Config(REDIS_STORAGE_SERVER_PORT=7778, REDIS_STORAGE_SERVER_PASSWORD='******')
     storage = RedisStorage(Context(config=config, server=get_server('ACME-SEC')))
     return storage.get_detector_data(IMAGE_URL % 10000)