Chris Dawes
Chris Dawes
core dump backtrace: https://gist.github.com/cmsd2/d92d55cf90e2dd78fc6b
well /test was the ephemeral node created by the example itself. the rest except for /service-paths are actually just used as folders for more stuff and so all have 0...
better log of the trace output: https://gist.github.com/cmsd2/bb87b48dc5158e09a5d9
it's quite repeatable, no your change doesn't help in my case. yes, the zookeeper_example as per my master branch. i've just noticed the large value that is passed to vec::from_elem...
i seem to be able to control whether the server stores a null byte array for the data or a 0-length array by sending either -1 or 0 from the...
ok i think our cache impl is now in a useable state. but there are some differences between it and the java version: we have fewer options for the initialisation...
I'm working on a Mutex impl https://github.com/cmsd2/rust-zookeeper/tree/mutex
i really want std::io::Timer but it got removed in favour of sleep_ms for now. I've had to spawn a timer thread as needed, which isn't great. I think the design...
oh and i would have liked Thread to implement PartialEq. instead I've had to define a ThreadId type which is platform specific (pthread_self or equiv).
and the mutex isn't a rust style mutex; there's no guard object at the moment.