Gavrie Philipson

Results 10 issues of Gavrie Philipson

@Michael-F-Bryan loved your blog post on Rust Closures in FFI! I used a very similar technique about a month ago to implement Rust callbacks for Redis modules: https://github.com/RedisLabsModules/redismodule-rs/blob/master/src/context/timer.rs

Set up a crate to manage the `redismodule-rs` dependency for `redisjson`. Also set up a crate for `redisjson` itself so it can be installed easily.

enhancement

When creating a native data type, we currently define placeholder native type methods: ``` rdb_load rdb_save aof_rewrite free ``` We should define a Rust API for implementing these methods cleanly...

enhancement

The `jsonpath` crate uses the `error-chain` crate for handling errors. We should decide on a consistent way to interface with it. Do we want to use `error-chain`? The current go-to...

enhancement

We should document the build requirements (`cmake`, `llvm` etc.) in our `README.md`. See RedisJSON/RedisJSON2#60 for details.

documentation

We should have good and consistent doc comments that explain the usage of the module, its concepts, etc. The current autogenerated docs are very minimal.

Dear contributors -- @VadimKulagin and @simonprickett We are in the process of releasing the new Rust-based RedisJSON. As part of this, we are merging the code from this repo to...

When the plugin runs oracle, it disregards the user's path from the environment. This, in turn, prevents cgo from working if Go is not installed in a standard system directory....

After spending a lot of time trying to understand why the Google Life Sciences API doesn't use the NVIDIA driver version we specified in the workflow via `nvidiaDriverVersion`, we discovered...