Hello!
I have the following requirements for a project:
A) Server can be run on any platform - therefore I used SQLite as database
B) Server can be connected from many clients (mobile App)
C) Server has to handle multiple requests at the same time
Now my question:
RTC can handle "normal" requests fine from multiple users at the same time.
BUT when I have a "Single user" database -> SQLite in place - things got complicated.
How should I handle the requests? Some queue?
Does someone has similar projects?
PS: I really love RTC!!!