-
Notifications
You must be signed in to change notification settings - Fork 0
✨ add cache system to improve perfs on google keys fetching #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| from dataclasses import dataclass | ||
| from abc import ABC, abstractmethod | ||
| from typing import Any | ||
|
|
||
|
|
||
| class CacheInterface(ABC): | ||
| """Abstract interface for a simple key/value cache backend. | ||
| Implementations are responsible for providing storage and retrieval | ||
| of arbitrary Python objects associated with string keys. | ||
| """ | ||
|
|
||
| @abstractmethod | ||
| def get(self, key: str) -> Any: | ||
| """Retrieve a value from the cache by key. | ||
| Args: | ||
| key: The string key whose value should be retrieved. | ||
| Returns: | ||
| The cached value associated with ``key`` if it exists and has | ||
| not expired. Implementations should return ``None`` when the | ||
| key is not present or the entry has expired. | ||
| """ | ||
| ... | ||
|
|
||
| @abstractmethod | ||
| def set(self, key: str, value: Any, timeout: int | None = None) -> None: | ||
| """Store a value in the cache under the given key. | ||
| Args: | ||
| key: The string key under which the value should be stored. | ||
| value: The value to cache. This may be any serializable object | ||
| supported by the backend implementation. | ||
| timeout: The cache lifetime in seconds. If ``None``, the | ||
| backend's default timeout should be used, which may mean | ||
| that the value does not expire automatically. | ||
| """ | ||
| ... | ||
|
|
||
|
|
||
| @dataclass | ||
| class CacheConfig: | ||
| """Configuration for caching Google's public keys used for webhook verification. | ||
| This dataclass groups together the cache key and the cache backend implementation. | ||
| """ | ||
|
|
||
| key: str | ||
| """Cache key under which Google's public keys will be stored.""" | ||
| backend: CacheInterface | ||
|
ripoul marked this conversation as resolved.
|
||
| """Cache backend used to store and retrieve Google's public keys. | ||
| This should be an implementation of :class:`CacheInterface`. | ||
| """ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.