Yusuf Simonson

Results 52 comments of Yusuf Simonson

Aw, they broke semver. I’ll make a fix soon but looks like you already know the workaround.

I'm not able to repro this issue. It looks like uuid is pinned to 0.8.2, so I'm not sure why it would try to pull 1.2.0.

Closing, but if there's any extra steps to repro please let me know.

Huh, yeah that looks like it should be fine. I can dig in a little later.

That error is happening because you’re not passing a valid UUID (as a 16-byte array of bytes) for the id. I’m not sure about the rest, it looks like the...

Looks like this issue is resolved, maybe by the v4 changes. Test in #289.

This will be supported in the forthcoming v4, via include()

macos has very low open file limits by default. Either open a rocksdb datastore with a lower open file limit: https://github.com/indradb/indradb/blob/master/lib/src/rdb/datastore.rs#L448 Or increase the open file limit: https://docs.riak.com/riak/kv/latest/using/performance/open-files-limit/index.html#mac-os-x-el-capitan

It doesn’t have to hard crash, that’s contingent on how you’re doing error handling. To not crash, handle the error without relying on eg unwrap or expect.

Yeah if the two can't be combined, that would be a show-stopper. Maybe it's possible with a combination of `OnceCell` and [`bench_with_input`](https://bheisler.github.io/criterion.rs/book/user_guide/benchmarking_with_inputs.html), where the former holds a vec of closures...