Results 71 comments of Eugene

I am currently working on proof of concept for this tag system at https://git.based.computer/fogapod/sayit

I don't understand how `dtolnay/rust-toolchain@stable` has clippy and fmt with minimal profile: https://github.com/dtolnay/rust-toolchain/blob/be73d7920c329f220ce78e0234b8f96b7ae60248/action.yml#L55 but it somehow works without requiring ```yaml with: components: clippy, rustfmt ```

This did not affect build time (unless i did something wrong) but might improve performance in release mode

![forfree](https://github.com/SS-NT/ssnt/assets/22667809/8b00cb55-b330-4a7b-9668-cc49e875a7ce) at least for #26 adding these 2 options results in huge boost 😄

Added `strip` option as well. It decreases executable size significantly. Docker build times comparisons on local machine (includes downloading git and crates.io files on my slow internet): Without release options:...

Having admin list means there should be some persistence. I dont think there is even a concept of account in game yet? Players just join using username and get assigned...

For some reason it does nothing for `_async` in `search`: https://github.com/milvus-io/pymilvus/blob/9f3214cc030dc9436c6855a118cd4195deddcb58/pymilvus/orm/collection.py#L794 -> https://github.com/milvus-io/pymilvus/blob/9f3214cc030dc9436c6855a118cd4195deddcb58/pymilvus/orm/future.py#L24 -> https://github.com/milvus-io/pymilvus/blob/9f3214cc030dc9436c6855a118cd4195deddcb58/pymilvus/orm/future.py#L53-L54 I am hitting this issue as well

Could orjson be hidden behind feature flag? something like `http-perf` maybe. Not everyone uses http client

Facing same issue with bazel/rules_python. I had to manually specify dependencies alongside `docling`: ``` requirement("tokenizers"), requirement("semchunk"), ``` Works with pip though