Re: Keep empty fields in 9.5

2024-04-04 Thread Charan Kooram
How do i unsubscribe to these threads ? Sent from Gmail Mobile On Thu, Apr 4, 2024 at 6:39 AM Carsten Klement wrote: > You're certainly right, but it's currently more important to me that the > application runs as before. In version 6.6 the empty fields were saved. > > I currently don't need q

Re: Keep empty fields in 9.5

2024-04-04 Thread Walter Underwood
That analysis pipeline does not store empty fields. If the field value is all whitespace or empty, the standard tokenizer will not produce any tokens, so the rest of the pipeline just doesn’t run. The token stream is empty and nothing is stored. Solr stores terms with positions. If there is no

Re: Keep empty fields in 9.5

2024-04-04 Thread Carsten Klement
You're certainly right, but it's currently more important to me that the application runs as before. In version 6.6 the empty fields were saved. I currently don't need queries for fields that don't exist. Am 04.04.24,

Re: Keep empty fields in 9.5

2024-04-04 Thread Gus Heck
Storing a space, whitespace or empty string for a field is generally a bad practice. Doing so makes it impossible to query for documents that don't contain the field using the normal syntax (i.e. q=*:* -myField:*) On Thu, Apr 4, 2024 at 9:09 AM Carsten Klement wrote: > Hi, > > we are currently u

Keep empty fields in 9.5

2024-04-04 Thread Carsten Klement
Hi, we are currently updating to 9.5 (from 6.6) and have the problem that empty fields are not stored in the solr-index. Is it possible to keep this empty fields? We transmit the documents via http in json structure. Thanks, Carsten