According to Game Server, that allow only 45 players per server. My Question is how many maximun user can access to BigDB table at same time ? Is that just only 45 players ?
Thank you
by taforyou » August 15th, 2015, 4:11 pm
by Henrik » August 17th, 2015, 5:49 pm
by taforyou » August 19th, 2015, 9:16 am
PlayerIO.Connect(
"xxxxxGameIDxxxxx",
"public",
"user-id",
"dasdas",
"asdasdasd",
delegate(Client client) {
obj.Set("username", "User" + Random.Range(0,9999).ToString());
obj.Set("location", "London");
obj.Set("age", Random.Range(0,9999));
myMultiDelegate += Test01;
myMultiDelegate();
//Create object in table Users with ConnectUserId as key
client.BigDB.CreateObject("HelloWorld", Random.Range(0,999999).ToString() , obj, null);
}
);
by Henrik » August 20th, 2015, 7:39 pm