20 lines
556 B
Python
20 lines
556 B
Python
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)
|