I seem to have run into the same issue as describe...
# community-help
l
I seem to have run into the same issue as described in this old github issue https://github.com/typesense/typesense/issues/1473 I have 45 results when querying for "silver armband" but 0 results when querying "silverarmband", with
"split_join_tokens": "always"
Anyone know why this is and if there is any workaround? Sharing the full search query payload in thread
Copy code
{
  "q": "silverarmband",
  "page": 1,
  "prefix_synonym": "true",
  "synonym_num_typos": 1,
  "use_cache": "false",
  "cache_ttl": 60,
  "exhaustive_search": "false",
  "typo_tokens_threshold": 5,
  "drop_tokens_threshold": 0,
  "max_candidates": 100,
  "facet_query_num_typos": 0,
  "text_match_type": "max_weight",
  "split_join_tokens": "always",
  "drop_tokens_mode": "both_sides:3",
  "collection": "collection_name",
  "per_page": 20,
  "include_fields": "title,categories",
  "max_facet_values": 1000,
  "query_by": "product_id,main_product_id,categories,item_group_id,title,brand,color_name,gender,size_name",
  "query_by_weights": "1,1,3,1,4,2,4,1,1",
  "prefix": "true,true,true,true,true,true,true,true,true",
  "num_typos": "0,0,2,0,2,2,2,2,2",
  "filter_by": "exists__inventory__se_1:=true && exists__pricelist__27:=true && exists__store__global:=true && inactive:!=true",
  "group_by": "grouping_id",
  "group_limit": 1,
  "sort_by": "_text_match:desc,boost_bury__se:desc"
}
j
Could you help replicate the issue on a small sample dataset using these curl commands: https://gist.github.com/jasonbosco/7c3432713216c378472f13e72246f46b
l
I tried reproducing it with a minimal setup but it seems something about the structure or size of my actual collection is the culprit because I cannot replicate the behaviour. Any way I can send you over a dump of my index and example requests?