Sergey Melderis
Sergey Melderis
Hi @pemistahl . I have two more relatively simple patches for performance improvements that cut processing time by another half. I use these patches in production, but I would like...
Hi @pemistahl. I know about other implementations too. Thanks 👍 . We have a team using the Kotlin version, although I know they are having issues with memory usage. Having...
Does this actually work? Here is my test case ```rust #[tokio::main] async fn main() { let pool = Pool::new("tcp://localhost:9000"); let mut client = pool.get_handle().await.unwrap(); let query = Query::new("select now()").id("query-id-select-now"); let...
The solution I found is `log_comment`. ```rust let query = Query::new("select now() settings log_comment = 'query-id-select-now'"); ``` Then instead of using `query_id` I use `log_comment` field ```sql select log_comment, event_time...
I work with text that may contain URLs. I pre-process documents before feeding into lingua-rs, and I use [linkify](https://docs.rs/linkify/latest/linkify/) crate to find URL indices. Finding URLs is a tricky problem...
Thanks for the pull request @Ox0400 . I will take a look during the weekend.
Hi. Curios, how do you plan on using the new methods ? Personally, I only use Rust part of the project, and do not use the Python bindings. I implemented...
Thanks for your suggestions. I may have encountered some of these ideas in papers, but never took a deep look. Currently, I use MinHash for relatively short text documents (usually...
I maintain a fork in company git just for this feature. I didn't use symlink crate as in [#1979](https://github.com/tokio-rs/tracing/pull/1979) because in my case I don't need Windows support