Multiple requests are not handled properly

I am using django with custom api for my rasa bot. The problem is, how must I handle multiple requests as there will be lots of users chatting at the same time? I am saving data in mongodb. @Juste @akelad @JulianGerhard

Hi @heyitsayush, you should configure on your custom frontend that each user sends a message with a different sender in the rest request. This is what is used to track the conversations for the different users.

1 Like

Hi @erohmensing, thanks for the reply. I actually found the solution by running rasa locally on default ports using subprocess inside django. The inbuilt tracker store is doing fine job saving the conversations even with multiple requests.