Could this be emulated the same way as Perl emulates fork() on Windows -
namely creating copies of the various necessary global variables,
spawning a new thread and passing in the copies to the thread?
As was discussed in another thread, you run into problems with the
"point in time" guarantee of syncing when you have threads
reading/writing data. You can see the earlier thread here:
https://groups.google.com/d/topic/redis-db/9n40WxoKNN4/discussion
Regards,
- Josiah