Yurii Rashkovskii
Yurii Rashkovskii
Hi Jonathan, This issue is in reference to npgall/cqengine#94 If typetools marked `sun.reflect` as an optional package in its OSGi manifest, then in case when its functionality required, one would...
Attempting to compile this (notice `crate::` prefix in `Error`): ```rust #[macro_use] extern crate derive_error; #[derive(Error)] pub enum Err { A } #[derive(Error)] pub enum Error { SomeErr(crate::Err), } ``` results...
Is there any specific reason why CollectionQueryEngine#retrieveRecursive only allows SimpleQuery and logical queries and throws an exception on other `Query`-implementing queries?
``` warning: use of deprecated item: use net module instead --> pumpkindb_server/src/connection.rs:15:5 | 15 | use mio::tcp::*; | ^^^^^^^^ | = note: #[warn(deprecated)] on by default warning: use of deprecated...
For most end-user cases, PumpkinDB is too "close to the metal" to be easily plugged into a business application, especially if "event sourcing" type of scenarios are considered. Proposed solution:...
Currently, lmdb is very entangled with PumpkinDB's code. Should we want to add another backend (existing or a new one we develop for PumpkinDB), it will require some serious modifications.
Running `cargo bench acker` in the pumpkindb_engine crate: *nightly-2017-06-20*: (last known "good" nightly) ``` test script::tests::ackermann ... bench: 32,562,056 ns/iter (+/- 4,313,209) test script::tests::ackermann_stack ... bench: 24,391,250 ns/iter (+/- 4,758,534)...
Suppose one gets types wrong and does something unusual, like using `UINT/ADD` on ints. That won't work right as `UINT` would treat those signed integers as unsigned ones, effectively mistaking...
Currently, [`builtins!`](https://github.com/PumpkinDB/PumpkinDB/blob/master/pumpkindb_engine/src/script/macros.rs#L8-L30) uses `lazy_static!` to prepare `BUILTINS` map of instructions. This means that until `handle_builtins` is first called, nothing is going to get parsed. So if there's, for example, a...