Toshi icon indicating copy to clipboard operation
Toshi copied to clipboard

A full-text search engine in rust

Results 44 Toshi issues
Sort by recently updated
recently updated
newest added

We're looking for a lightweight alternative to Elastic Search that we could use in automated tests. It's not 100% clear from the README if the goal of this project is...

Bumps [serde_urlencoded](https://github.com/nox/serde_urlencoded) from 0.7.0 to 0.7.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_urlencoded&package-manager=cargo&previous-version=0.7.0&new-version=0.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [dashmap](https://github.com/xacrimon/dashmap) from 4.0.2 to 5.0.0. Release notes Sourced from dashmap's releases. v5.0.0 Hey ho buckaroo! v5.0.0 is a maintenance release introducing minor breaking API changes and new features. Changelog:...

dependencies

Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.10.1 to 0.10.3. Changelog Sourced from itertools's changelog. Changelog 0.10.2 Add Itertools::multiunzip (#362, #565) Add intersperse and intersperse_with free functions (#555) Add Itertools::sorted_by_cached_key (#424, #575) Specialize ProcessResults::fold...

dependencies

Bumps [hyper-rustls](https://github.com/ctz/hyper-rustls) from 0.22.1 to 0.23.0. Commits 634f0af README.md: adjust 0.23.0 date 4bfe207 Merge branch 'jbp-improve-ci-2' into main 3b5b740 Remove Azure pipelines configuration a357584 Extend GitHub Actions configuration 2abf6ae Fix...

dependencies

**Describe the bug** curl -v -H "Content-Type: application/json" --data-binary @bulkbody.json http://localhost:8000/emails/_bulk If bulkbody.json is over 8kb in size, toshi returns 400 bad request `{"message":"Error in Index: 'The provided string is...

Hi folks, I want to say, your were doing a great job on migrating/creating a full-text search engine by rust, maybe it will take a piece of cake from the...

**Describe the bug** I'm trying to use the _bulk endpoint. I read the tests in the code, and understand that it want's line-by-line JSON as the request body. I got...

**Is your feature request related to a problem? Please describe.** https://github.com/tantivy-search/tantivy#features One of the features tantivy provides is to support custom tokenizers. For example `tantivy-jieba`. Is it possible for Toshi...

Currently when searching we need to provide the fields we explicitly need to search for. e.g. `{ "query": { "term": { "lyrics": "cool" } }, "limit": 10 }` Is it...