This commit is contained in:
2025-04-26 21:27:55 -04:00
parent 6a43d32808
commit 0b70d93d47
9 changed files with 65 additions and 34 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(
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()