ddorian
ddorian
**Is your feature request related to a problem? Please describe.** Basically a fast-field for strings. Columnar storage. **Describe the solution you'd like** If you have a `TermDictionary` for the field,...
Hi, I have the following field in marshmallow: ```python the_field = fields.Integer(validate=[validate.OneOf([1, 2, 3], labels=['one', 'two', 'three'])]) ``` And the resulting json: ``` "the_field": { "type": "integer", "enum": [ 1,...
In backup scenarios, there are cases where you don't read a file for a long time. But bitrot happens on disk. This command will make sure errors are detected. A...
Looks like some configs like `OPENAPI_URL_PREFIX` are fixed to the application and this prevents the ability to have multiple apis for 1 app. The simplest case I'd think 1 Api()...
**To Reproduce** Steps to reproduce the behavior: 1. Init a repository to a remote ssh using borg commandline 1.1.15 ``` borg init user@host:/home/user/borg_backup --encryption=keyfile --remote-path="/usr/bin/borg-1.1.14/borg-1.1.14" ``` 2. Create a backup...
Benchmarks ?
People love benchmarks. Especially against lucene.
I will use this project to make backups of a live db directly into ovh-cloud-storage. It would be great to have something like https://github.com/GoogleCloudPlatform/gcsfuse#rate-limiting so we don't saturate the bandwidth...
If you know that your search will touch few buckets, then only the nodes containing them will be contacted, lowering network hops.
Hi, With missing in-memory multiprocess cache in Python, the closest thing seems sqlite. Any best practices for in-memory shared cache between multiple processes? Some ideas: - `sqlite_synchronous=0` - `sqlite_mmap_size=0` -...
Hi, I would like to enable strict jinja2 when trying to print `{{ config.extra.missing_variable }}` in overridden templates and get an error instead of a blank string. Is this currently...