Use sets for random

This commit is contained in:
2022-04-02 17:30:12 +03:00
parent 2f6a4a192a
commit b13976d017
4 changed files with 39 additions and 27 deletions

View File

@@ -1,4 +1,4 @@
from fastapi import APIRouter, Depends, Request
from fastapi import APIRouter, BackgroundTasks, Depends, Request
from fastapi_pagination import Params
from fastapi_pagination.ext.ormar import paginate
@@ -29,10 +29,13 @@ async def get_sequences():
@sequence_router.get("/random", response_model=Sequence)
async def get_random_sequence(
request: Request,
background_tasks: BackgroundTasks,
allowed_langs: frozenset[str] = Depends(get_allowed_langs),
):
sequence_id = await GetRandomSequenceService.get_random_id(
allowed_langs, request.app.state.redis
allowed_langs,
request.app.state.redis,
background_tasks,
)
return await SequenceDB.objects.get(id=sequence_id)