sake#
A distributed asynchronous cache standard designed for Hikari.
For the interfaces defined by this standard see sake.abc.
For standard implementation(s) see:
- Redis: sake.redis
BackendError #
Bases: SakeException
, ValueError
Error that's raised when communicating with the backend fails.
This may be a sign of underlying network or database issues.
CannotDelete #
Bases: SakeException
, ValueError
Error that's raised in response to an attempt to delete an entry which can't be deleted.
This most likely reason for this to be raised would be due to an attempt to deleted a entry that's being kept alive by references without specifying to cascade references in a referential database.
ClosedClient #
Bases: SakeException
Error that's raised when an attempt to use an inactive client is made.
EntryNotFound #
Bases: SakeException
, LookupError
Error that's raised in response to an attempt to get an entry which doesn't exist.
Note
This shouldn't ever be raised by a delete method or iter method.
InvalidDataFound #
Bases: SakeException
, LookupError
Error that's raised when the retrieved data is in an unexpected format.
This may indicate that you are running different versions of a Sake implementation with the same database.
RedisCache #
Bases: GuildCache
, EmojiCache
, GuildChannelCache
, InviteCache
, MemberCache
, MessageCache
, PresenceCache
, RoleCache
, UserCache
, VoiceStateCache
, Cache
A Redis implementation of all the defined cache resources.
app property
#
app
The Hikari client this resource client is tied to.
This is used to build models with a app
attribute.
default_expire property
#
default_expire
The default expire time used for fields with no actual lifetime.
If this is None then these cases will have no set expire after.
event_manager property
#
event_manager
The event manager this resource client is using for managing state.
__init__ #
__init__(address, app, event_manager=None, *, config=None, default_expire=DEFAULT_SLOW_EXPIRE, event_managed=False, password=None, max_connections_per_db=5, dumps=lambda obj: json.dumps(obj).encode(), loads=json.loads)
Initialise a resource client.
Parameters:
-
app
(Union[RESTAware, RESTClient]
) –The Hikari app or REST client all the models returned by this client should be bound to.
-
address
(str
) –The address to use to connect to the Redis backend server this resource is linked to.
E.g: -
"redis://[[username]:[password]]@localhost:6379"
-"rediss://[[username]:[password]]@localhost:6379"
-"unix://[[username]:[password]]@/path/to/socket.sock"
Three URL schemes are supported: -
redis://
: creates a TCP socket connection. See more at: https://www.iana.org/assignments/uri-schemes/prov/redis -rediss://
: creates a SSL wrapped TCP socket connection. See more at: https://www.iana.org/assignments/uri-schemes/prov/rediss -unix://
: creates a Unix Domain Socket connection. -
event_manager
(Optional[EventManager]
, default:None
) –The event manager to bind this resource client to.
If provided then this client will automatically manage resources based on received gateway events.
-
event_managed
(bool
, default:False
) –Whether the client should be started and stopped based on the attached event_manager's lifetime events.
-
password
(Optional[str]
, default:None
) –The password to use to connect to the backend Redis server.
Raises:
-
ValueError
–When
event_managed
is True andevent_manager
wasn't passed.
add_to_tanjun #
add_to_tanjun(client, /, *, trust_get_for=None, tanjun_managed=False)
Add this Redis client to a Tanjun client.
This method will register type dependencies for the resources implemented by it (including tanjun.dependencies.async_cache compatible adapters which will allow Tanjun extensions and standard utility such as converters to be aware of this cache).
The type dependencies this will register depend on which resources are implemented but are as follows for each standard resource implementation:
- sake.redis.EmojiCache
- sake.abc.EmojiCache
- sake.abc.RefEmojiCache
- sake.redis.EmojiCache
tanjun.dependencies.async_cache.SfCache[hikari.KnownCustomEmoji]
tanjun.dependencies.async_cache.SfGuildBound[hikari.KnownCustomEmoji]
- sake.redis.GuildCache
- sake.abc.GuildCache
- sake.redis.GuildCache
tanjun.dependencies.async_cache.SfCache[hikari.Guild]
tanjun.depepdencies.async_cache.SfCache[hikari.GatewayGuild]
- sake.redis.GuildChannelCache
- sake.abc.GuildChannelCache
- sake.abc.RefGuildChannelCache
- sake.redis.GuildChannelCache
tanjun.dependencies.async_cache.SfCache[hikari.PermissibleGuildChannel]
tanjun.dependencies.async_cache.SfGuildBound[hikari.PermissibleGuildChannel]
- sake.redis.InviteCache
- sake.abc.InviteCache
- sake.redis.InviteCache
tanjun.dependencies.async_cache.SfCache[hikari.Invite]
tanjun.dependencies.async_cache.SfCache[hikari.InviteWithMetadata]
- sake.redis.MemberCache
- sake.abc.MemberCache
- sake.redis.MemberCache
tanjun.dependencies.async_cache.SfGuildBound[hikari.Member]
- sake.redis.MessageCache
- sake.abc.MessageCache
- sake.redis.MessageCache
tanjun.dependencies.async_cache.SfCache[hikari.Message]
- sake.redis.PresenceCache
- sake.abc.PresenceCache
- sake.redis.PresenceCache
tanjun.dependencies.async_cache.SfGuildBound[hikari.MemberPresence]
- sake.redis.RoleCache
- sake.abc.RoleCache
- sake.redis.RoleCache
tanjun.dependencies.async_cache.SfCache[hikari.Role]
tanjun.dependencies.async_cache.SfGuildBound[hikari.Role]
- sake.redis.UserCache
- sake.abc.MeCache
- sake.abc.UserCache
- sake.redis.UserCache
tanjun.dependencies.async_cache.SingleStoreCache[hikari.OwnUser]
tanjun.dependencies.async_cache.SfCache[hikari.User]
- sake.redis.VoiceStateCache
- sake.abc.VoiceStateCache
- sake.redis.VoiceStateCache
tanjun.dependencies.async_cache.SfGuildBound[hikari.VoiceState]
- sake.redis.RedisCache
- All of the previously listed types
- sake.abc.Cache
- sake.redis.RedisCache
Parameters:
-
client
(Client
) –The Tanjun client to add this client to.
-
trust_get_for
(Optional[Collection[type[Resource]]]
, default:None
) –A collection of resource types which the tanjun.dependencies.async_cache adapter "get" methods should raise tanjun.dependencies.async_cache.EntryNotFound if the entry isn't found rather than just tanjun.dependencies.async_cache.CacheMissError.
If not passed then this will default to the following resources:
-
tanjun_managed
(bool
, default:False
) –Whether the client should be started and stopped based on the tanjun client's lifecycle.
This is useful if the client isn't being event managed.
Raises:
-
RuntimeError
–If this is called in an environment without Tanjun.
all_indexes #
all_indexes()
Get a set of all the Redis client indexes this is using.
Note
This accounts for index overrides.
Returns:
-
MutableSet[ResourceIndex | int]
–A set of all the Redis client indexes this is using.
all_intents classmethod
#
all_intents()
The intents required for a client to be sufficient event managed.
If not all these intents are present in the linked event manager then this client won't be able to reliably fill and manage the linked redis database(s).
dump #
dump(data)
Serialize a dict object representation into the form to be stored.
Parameters:
-
data
(_ObjectT
) –The dict object to serialize.
Returns:
-
bytes
–The object serialized as bytes.
get_index_override #
get_index_override(index)
Get the override set for an index.
Parameters:
-
index
(ResourceIndex
) –The index to get the override for.
Returns:
load #
load(data)
with_index_override #
with_index_override(index, /, *, override=None)
Add an index override.
Parameters:
-
index
(ResourceIndex
) –The index to override.
-
override
(Optional[int]
, default:None
) –The override to set.
If this is left at None then any previous override is unset. This will decide which Redis database is targeted for a resource.
with_invite_expire #
with_invite_expire(expire)
Set the default expire time for invite entries added with this client.
Parameters:
-
expire
(Optional[ExpireT]
) –The default expire time to add for invites in this cache or None to set back to the default behaviour. This may either be the number of seconds as an int or float (where millisecond precision is supported) or a timedelta.
Returns:
-
Self
–The client this is being called on to enable chained calls.
with_message_expire #
with_message_expire(expire)
Set the default expire time for message entries added with this client.
Parameters:
-
expire
(Optional[ExpireT]
) –The default expire time to add for messages in this cache or None to set back to the default behaviour. This may either be the number of seconds as an int or float (where millisecond precision is supported) or a timedelta.
Returns:
-
Self
–The client this is being called on to enable chained calls.
with_user_expire #
with_user_expire(expire)
Set the default expire time for user entries added with this client.
Parameters:
-
expire
(Optional[ExpireT]
) –The default expire time to add for users in this cache or None to set back to the default behaviour. This may either be the number of seconds as an int or float (where millisecond precision is supported) or a timedelta.
Returns:
-
Self
–The client this is being called on to enable chained calls.
SakeException #
Bases: Exception
Base exception for the expected exceptions raised by Sake implementations.