Vitaly Rotari
Vitaly Rotari
why not to use Map instead of Array? I think this will not have big impact to performance.
hi, I made a SQL driver based on Sequelize ORM, is not tested well, but is seems to work. I will send a pull request a bit latter ;)
Hey, check this out https://github.com/colyseus/colyseus/pull/402
@endel I found interesting project based on C++, is a proxy server, you can take a look https://pushpin.org/. Maybe it can be integrated with Colyseus
@endel `@type('string')` is casting to string? I use `moment/luxon` for date & time ```TypeScript import { DateTime, Duration } from "luxon"; DateTime.now().toString(); // 2021-03-05T19:26:46.628+02:00 Duration.fromMillis(30000).toString(); // PT30S ``` In my...
@endel unix timestamp doesn't preserve time zone, this is why I use `ISO 8601`. So if timezone is not critical, yes we can use unix timestamp :)
@endel yep :) So the bulletproof option is `ISO 8601`, but that's if accuracy is required.
@serjek you use ReactNative?
@seiyria try to disable pings from server ``` const server = Colyseus.Server({ pingInterval: 0, }) ```
also I report this again to RN Team old issue: https://github.com/facebook/react-native/issues/23825 new issue: https://github.com/facebook/react-native/issues/30020