This commit is contained in:
2025-04-26 22:01:25 -04:00
parent 0b70d93d47
commit 2a49a92bb2
4 changed files with 24 additions and 15 deletions

View File

@ -96,9 +96,9 @@ class Misc(FastAPI):
"""
# Measure response time w/ test lyric search
time_start: float = time.time() # Start time for response_time
test_lyrics_result = await self.redis_client.ft().search( # noqa: F841
test_lyrics_result = await self.redis_client.ft().search( # noqa: F841
"@artist: test @song: test"
)
)
time_end: float = time.time()
# End response time test
total_keys = await self.redis_client.dbsize()