1
0
mirror of synced 2024-11-24 22:40:12 +01:00
bemaniutils/bemani/frontend/sdvx/cache.py

20 lines
556 B
Python
Raw Normal View History

from typing import Dict, Any
from flask_caching import Cache # type: ignore
from bemani.data import Data
from bemani.frontend.app import app
from bemani.frontend.sdvx.sdvx import SoundVoltexFrontend
class SoundVoltexCache:
@classmethod
def preload(cls, data: Data, config: Dict[str, Any]) -> None:
cache = Cache(app, config={
'CACHE_TYPE': 'filesystem',
'CACHE_DIR': config['cache_dir'],
})
frontend = SoundVoltexFrontend(data, config, cache)
frontend.get_all_songs(force_db_load=True)