Ido Barkan
Ido Barkan
any progress on this @ztellman? reinventing the Clojure wrapper in another lazy JSON parse is a pain :-)
also, on windows 11, difftastic v27: ``` difft-3594e9aa2074f155.difft.6c00d299-cgu.5.rcgu.o : error LNK2019: unresolved external symbol tree_sitter_python referenced in function _ZN5difft18tree_sitter_parser13from_language17h44979f1d781cdb5fE difft-3594e9aa2074f155.difft.6c00d299-cgu.5.rcgu.o : error LNK2019: unresolved external symbol tree_sitter_dart referenced in function...
> I also got a bunch of unresolved externals from tree_sitter while compiling on Windows 10 with Visual Studio Community 2022 (I think about ten errors). So I searched and...
@evoxmusic this is still WIP. I wanted your comments on this design, and if we all agree, then some help in progressing with the GC implementation itself
Can I own this one? Also, for that matter, do we support logical DB's? `COPY source destination [DB destination-db] [REPLACE]`
> Also, for that matter, do we support logical DB's? > `COPY source destination [DB destination-db] [REPLACE]` @evoxmusic ?
well, afaik, logical DBs is an independent feature from clustering. E.g, users can use one of them without the other, but not both. >When using Redis Cluster, the SELECT command...
@clarity0 @evoxmusic I need some advice here. `COPY` is inherently unsafe because it needs to burrow `self` the storage as mutable more than once: ```rust // in run_command.rs let mut...
> The reason `read` and `contains` methods in the current implementation need to take `&mut self` is that they check if the key is expired, maybe this behavior could be...
thanks, @mac01021 I was searching for a way that does not create a new `CompletableFuture` object but rather, extending a deferred to also be a `CompletionStage`.