Open GirkovArpa opened 5 months ago
According to the README:
These are listed as pros. However, they are major cons (in this context). You don't want your TicTacToe move zipping around databases distributed across the globe before it arrives on your opponent's screen with the (up to 10 second?) lag of Deno.kv
. This is the opposite of the impression conveyed by the term "edge".
What you want is for your TicTacToe move to make a bee-line to the server then straight to them.
I built a turn-based game where the game loop is basically a
kv.watch()
loop, using this (and a chat app) as inspiration. The latency is just as bad; up to several seconds for a single turn.If this is the best multiplayer game demo for Deno, multiplayer with Deno is a dead end.