Module pygw.store.redis.options
Source code
#
# Copyright (c) 2013-2022 Contributors to the Eclipse Foundation
#
# See the NOTICE file distributed with this work for additional information regarding copyright
# ownership. All rights reserved. This program and the accompanying materials are made available
# under the terms of the Apache License, Version 2.0 which accompanies this distribution and is
# available at http://www.apache.org/licenses/LICENSE-2.0.txt
# ===============================================================================================
from pygw.config import geowave_pkg
from pygw.store import DataStoreOptions
class RedisOptions(DataStoreOptions):
"""
Redis data store options.
"""
def __init__(self):
super().__init__(geowave_pkg.datastore.redis.config.RedisOptions())
def set_address(self, address):
"""
Sets the address of the Redis data store.
Args:
address (str): The address of the Redis data store.
"""
self._java_ref.setAddress(address)
def get_address(self):
"""
Returns:
The address of the Redis data store.
"""
return self._java_ref.getAddress()
def set_compression(self, compression):
"""
Sets the compression to use for the Redis data store. Valid options are `SNAPPY`,
`L4Z`, or `NONE`.
Args:
compression (str): The compressioin to use.
"""
converter = geowave_pkg.datastore.redis.config.RedisOptions.CompressionConverter()
self._java_ref.setCompression(converter.convert(compression))
def get_compression(self):
"""
Returns:
The compression used by the data store.
"""
return self._java_ref.getCompression().name()
def set_username(self, username):
"""
Sets the Redis username to be used with Redis AUTH.
Args:
username (str): The Redis username to be used with Redis AUTH.
"""
self._java_ref.setUsername(username)
def get_username(self):
"""
Returns:
The Redis username to be used with Redis AUTH.
"""
return self._java_ref.getUsername()
def set_password(self, password):
"""
Sets the password for the user to be used with Redis AUTH.
Args:
password (str): The password for the user to be used with Redis AUTH.
"""
self._java_ref.setPassword(password)
def get_password(self):
"""
Returns:
The password for the user to be used with Redis AUTH.
"""
return self._java_ref.getPassword()
Classes
class RedisOptions
-
Redis data store options.
Source code
class RedisOptions(DataStoreOptions): """ Redis data store options. """ def __init__(self): super().__init__(geowave_pkg.datastore.redis.config.RedisOptions()) def set_address(self, address): """ Sets the address of the Redis data store. Args: address (str): The address of the Redis data store. """ self._java_ref.setAddress(address) def get_address(self): """ Returns: The address of the Redis data store. """ return self._java_ref.getAddress() def set_compression(self, compression): """ Sets the compression to use for the Redis data store. Valid options are `SNAPPY`, `L4Z`, or `NONE`. Args: compression (str): The compressioin to use. """ converter = geowave_pkg.datastore.redis.config.RedisOptions.CompressionConverter() self._java_ref.setCompression(converter.convert(compression)) def get_compression(self): """ Returns: The compression used by the data store. """ return self._java_ref.getCompression().name() def set_username(self, username): """ Sets the Redis username to be used with Redis AUTH. Args: username (str): The Redis username to be used with Redis AUTH. """ self._java_ref.setUsername(username) def get_username(self): """ Returns: The Redis username to be used with Redis AUTH. """ return self._java_ref.getUsername() def set_password(self, password): """ Sets the password for the user to be used with Redis AUTH. Args: password (str): The password for the user to be used with Redis AUTH. """ self._java_ref.setPassword(password) def get_password(self): """ Returns: The password for the user to be used with Redis AUTH. """ return self._java_ref.getPassword()
Ancestors
Methods
def get_address(self)
-
Returns
The address of the Redis data store.
Source code
def get_address(self): """ Returns: The address of the Redis data store. """ return self._java_ref.getAddress()
def get_compression(self)
-
Returns
The compression used by the data store.
Source code
def get_compression(self): """ Returns: The compression used by the data store. """ return self._java_ref.getCompression().name()
def get_password(self)
-
Returns
The password for the user to be used with Redis AUTH.
Source code
def get_password(self): """ Returns: The password for the user to be used with Redis AUTH. """ return self._java_ref.getPassword()
def get_username(self)
-
Returns
The Redis username to be used with Redis AUTH.
Source code
def get_username(self): """ Returns: The Redis username to be used with Redis AUTH. """ return self._java_ref.getUsername()
def set_address(self, address)
-
Sets the address of the Redis data store.
Args
address
:str
- The address of the Redis data store.
Source code
def set_address(self, address): """ Sets the address of the Redis data store. Args: address (str): The address of the Redis data store. """ self._java_ref.setAddress(address)
def set_compression(self, compression)
-
Sets the compression to use for the Redis data store. Valid options are
SNAPPY
,L4Z
, orNONE
.Args
compression
:str
- The compressioin to use.
Source code
def set_compression(self, compression): """ Sets the compression to use for the Redis data store. Valid options are `SNAPPY`, `L4Z`, or `NONE`. Args: compression (str): The compressioin to use. """ converter = geowave_pkg.datastore.redis.config.RedisOptions.CompressionConverter() self._java_ref.setCompression(converter.convert(compression))
def set_password(self, password)
-
Sets the password for the user to be used with Redis AUTH.
Args
password
:str
- The password for the user to be used with Redis AUTH.
Source code
def set_password(self, password): """ Sets the password for the user to be used with Redis AUTH. Args: password (str): The password for the user to be used with Redis AUTH. """ self._java_ref.setPassword(password)
def set_username(self, username)
-
Sets the Redis username to be used with Redis AUTH.
Args
username
:str
- The Redis username to be used with Redis AUTH.
Source code
def set_username(self, username): """ Sets the Redis username to be used with Redis AUTH. Args: username (str): The Redis username to be used with Redis AUTH. """ self._java_ref.setUsername(username)
Inherited members
DataStoreOptions
:get_aggregation_max_range_decomposition
get_geowave_namespace
get_max_range_decomposition
is_enable_block_cache
is_instance_of
is_persist_data_statistics
is_secondary_indexing
is_server_side_library_enabled
is_visibility_enabled
set_aggregation_max_range_decomposition
set_enable_block_cache
set_enable_visibility
set_geowave_namespace
set_max_range_decomposition
set_persist_data_statistics
set_secondary_indexing
set_server_side_library_enabled