Hello Cocomo's team, i have few questions and concept i would
like to validate.
1
Room management
I don't know if spawning a room on each request is the most
effective since i would have to login as a developer every time and
that takes a little bit of time. On the other hand if i create a
pool of 50 rooms and keep track of their names on my server i would
still have to login for each of them the time to redirect users to
the app has come, we would call call
accountmanager.getSession("roomname"). When i tried to pickle
(store) accountmanager object, its life time is not infinite after
a while i will need to relogin to make the "am" work.
How would you manage a pool of rooms while minimising the
login request ?
2
Room lifetime
On our free version of the tool we would like not to cut too
much on the features side but limitate the room lifetime by forcing
a closure of the room after 10 minutes for example. How would you
achieve such a thing ? by puting the code in the client directly ?
by keeping track of the time of when the room was created, and use
the webserver to remove the room after the time is up ? Other
solutions ?
3
Room limitation
In the same fashion how could i limit the number of users in
a room to Two ? (excluding the creator), that makes two publishers
for example.
Thanks,
Greg