vincent163
vincent163
After figuring out that the benchmark was defective, I created a new parser using the technique mentioned in #24 . The benchmark results without `benchPool`, which should be closer to...
Since the pointers to original values are always held, it doesn't make sense to use append() and keep the original values anyway. I expect this change to reduce memory consumption...
Some parts of the new Arena API that I find hard to use: * Object only provides O(n) implementation of `Get`/`Set`, which is useful in most cases, but it also...
Is this project still active? Is it likely that the mechanism will be adopted in the future? Looking forward to it. Here are some of my considerations for this protocol:...
**The problem/use-case that the feature addresses** This would make "durability" in ACID possible to implement (at least indirectly) in Redis. **Description of the feature** A new flag for the `WAIT`...
When the table is too large (like when it contains too many columns), a horizontal bar appears. But instead of being tied to the bottom of the window, it's at...
The line: https://github.com/worldveil/dejavu/blob/d2b8761eb39f8e2479503f936e9f9948addea8ea/dejavu/fingerprint.py#L98 is taking up around 80% of processing time (my feeling), which makes it a bottleneck in processing. The maximum filter loops over all positions, takes the maximum...
## 🐛 Bug Running a new notebook with two cells via papermill: (assuming `results.json` does not exist) ```python %%time # cell 1 with open('results.json') as f: results = json.load(f) ```...
The expression `(a:(.* *) (:(.* a) a))` can be normalized and typed without errors. The type is inferred as `(a.(.* *) (.(.* a) (.* *)))`. However, when inferring the type...