You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the backend is doing a synchronous write for the collected data (e.g. the frontend is blocked until the backend is done writing BCI data). This slows down the collection process as the frontend needs to wait for the backend to be done writing before going on to the next collection. We can asynchronously write the data in the backend either using Celery Task Queue or asyncio. Need to investigate which solution would fit best in this scenario.
The text was updated successfully, but these errors were encountered:
Currently, the backend is doing a synchronous write for the collected data (e.g. the frontend is blocked until the backend is done writing BCI data). This slows down the collection process as the frontend needs to wait for the backend to be done writing before going on to the next collection. We can asynchronously write the data in the backend either using
Celery Task Queue
orasyncio
. Need to investigate which solution would fit best in this scenario.The text was updated successfully, but these errors were encountered: