ben-pr-p
ben-pr-p8mo ago

Memory per session

Is there any sort of minimum memory requirements per session? I'm trying to properly size a deployed machine for maybe 5 concurrent users. Other than temporarily holding on to ~30 seconds of audio, there's nothing heavy going on in the app
2 Replies
Akshay
Akshay8mo ago
Each session is run in its own thread, but they all share the same OS process. So they should be lightweight
ben-pr-p
ben-pr-pOP8mo ago
Ok gotcha, so I can think of it as the overall memory of one user x the memory of each specific program? I should not do Python process * N, right?