def _save_to_cache(key: str, data: bytes, format: str = 'html') -> None:
try:
cache.set(key, data, CACHE_LIVE_TIME, format)
except Exception:
logger.exception('Error writing cache')
if sentry:
sentry.captureException()
评论列表
文章目录