"Sync values using remote function calls rather than using synced
variables. As described above, some amount of traversal is required to
synchronize variables in the now namespace. If you need to rapidly set
a value on one client and then immediately use that value on the other
clients, consider broadcasting this using function calls. Function
calls are much faster than using variable syncing."
http://nowjs.com/bestpractices
On Apr 23, 2:50 pm, Nate Morse <
morse.n...@gmail.com> wrote:
> Actually I have noticed that, the very first server-side assignment to
> now.test does synchronize out to the client, but then after that, a
> second (3rd, ...) assignment does *not* sync.
> I have also worked around this with function calls etc.
>