Louis Dureuil
Louis Dureuil
Thank you for making `genawaiter`! ## Configuration - rustc 1.59.0 (9d1b2106e 2022-02-23) - genawaiter v0.99.1 ## Code ```rust use genawaiter::{ rc::gen, yield_, }; fn main() { let mut printer =...
[This recently posted article](https://lucumr.pocoo.org/2022/1/30/unsafe-rust/) makes that point that, because the [default representation](https://doc.rust-lang.org/stable/reference/type-layout.html#the-default-representation) makes no guarantees of data layout, one must use `write_unaligned` to write to the fields of a struct...
# Pull Request ## Related issue Fixes #3427 ## What does this PR do? ### User standpoint - Adds a new `/search` entry point (not to be confused with the...
# Pull Request ## Related issue Relevant to #1841 ## What does this PR do? ### User standpoint - Limit the number of concurrently opened indexes (currently, to 20) -...
# Pull Request ## Related issue Related to https://github.com/meilisearch/meilisearch/discussions/3280, depends on https://github.com/meilisearch/milli/pull/760 ## What does this PR do? ### User standpoint - Meilisearch no longer fails tasks that encounter the...
# Pull Request ## Related issue Fixes #3426 ## What does this PR do? ### User standpoint - When using a `facets` parameter in search, the facets that have numeric...
# Pull Request ## What does this PR do? - Parses the last git tag to extract a prototype name if: - Current build uses the prototype tag (not after...
Related product discussion: https://github.com/meilisearch/product/discussions/284 Related specification: WIP ### TODO - [ ] For implementation, check with the product squad to get how it should be implemented - [ ] Merge...
POSIX semaphores were added as a feature to milli in https://github.com/meilisearch/meilisearch/pull/3407. They have the following characteristics: https://github.com/meilisearch/meilisearch/pull/3407#issuecomment-1413521164 Enabling them could potentially help with some of the spurious OS error 22...
## Context - There is currently an inherent tradeoff between the number of opened indexes and their max size. In v1.0.0, this tradeoff is "fixed" due to the removal of...