-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
38 deletions.
There are no files selected for viewing
This file contains 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 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,30 @@ | ||
# ******************************************************************************* | ||
# Copyright (c) 2024 Eclipse Foundation and others. | ||
# This program and the accompanying materials are made available | ||
# under the terms of the Eclipse Public License 2.0 | ||
# which is available at http://www.eclipse.org/legal/epl-v20.html | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# ******************************************************************************* | ||
|
||
from aiohttp_client_cache import CacheBackend | ||
|
||
from otterdog.providers.github.cache import CacheStrategy | ||
|
||
_AIOHTTP_CACHE_DIR = ".cache/async_http" | ||
|
||
|
||
def file_cache(cache_dir: str = _AIOHTTP_CACHE_DIR) -> CacheStrategy: | ||
return _FileCache(cache_dir) | ||
|
||
|
||
class _FileCache(CacheStrategy): | ||
def __init__(self, cache_dir: str): | ||
self._cache_dir = cache_dir | ||
|
||
def get_cache_backend(self) -> CacheBackend: | ||
from aiohttp_client_cache.backends import FileBackend | ||
|
||
return FileBackend( | ||
cache_name=self._cache_dir, | ||
use_temp=False, | ||
) |
This file contains 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,27 @@ | ||
# ******************************************************************************* | ||
# Copyright (c) 2024 Eclipse Foundation and others. | ||
# This program and the accompanying materials are made available | ||
# under the terms of the Eclipse Public License 2.0 | ||
# which is available at http://www.eclipse.org/legal/epl-v20.html | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# ******************************************************************************* | ||
|
||
from aiohttp_client_cache import CacheBackend | ||
from redis.asyncio.client import Redis | ||
|
||
from otterdog.providers.github.cache import CacheStrategy | ||
|
||
|
||
def redis_cache(uri: str, connection: Redis | None = None) -> CacheStrategy: | ||
return _RedisCache(uri, connection) | ||
|
||
|
||
class _RedisCache(CacheStrategy): | ||
def __init__(self, redis_uri: str, connection: Redis | None): | ||
self._redis_uri = redis_uri | ||
self._connection = connection | ||
|
||
def get_cache_backend(self) -> CacheBackend: | ||
from aiohttp_client_cache.backends import RedisBackend | ||
|
||
return RedisBackend(address=self._redis_uri, connection=self._connection) |
This file contains 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 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