Wei -
Here's some details on the various payload capabilities and short-comings:
https://lucidworks.com/post/solr-payloads/
SOLR-10541 is the main functional constraint (range faceting over functions).
Erik
> On May 8, 2020, at 7:26 PM, Wei wrote:
>
> Hi everyon
tems and
> 1000 stores.
>
> Option 1: use solr payloads, each document have
> store_prices_payload:store1|price1 store2|price2 .
> store1000|price1000
>
> Option 2: use dynamic fields and have 1000 fields in each document, i.e.
> field1: store1_pri
Hi everyone,
Have a question regarding typical e-commerce scenario: each item may have
different price in different store. suppose there are 10 million items and
1000 stores.
Option 1: use solr payloads, each document have
store_prices_payload:store1|price1 store2|price2 .
store1000
We are using solr payload field and noticed the values extracted using
payload() sometimes don't match the value stored in the field. Is there a
lossy encoding for the payload value?
fq=payload_field:*, fl=payload_field,payload(payload_field, 573131)
"payload_field": "573131|*1568263581*"
Yes, check out the field type "payloads" in the schema.xml file. If you
set up one or more of your fields as type payloads (you would use the
DelimitedPayloadTokenFilterFactory during indexing in your analyzer
chain), you can then use the PayloadTermQuery to query it with, scoring
can be done with
Hi!
I'm studying a migration from "pure" Lucene to Solr, but I need a crucial
feature:
Is it posible to retrieve payloads from Solr?
I'm storing the coordinates from each term in its payload to highlight
images in client-side.
Thank you,