ld for
hour of the day
-Original Message-
From: Erick Erickson
Sent: Wednesday, June 19, 2019 1:34 PM
To: solr-user@lucene.apache.org
Subject: Re: creating date facets
*** WARNING ***
EXTERNAL EMAIL -- This message originates from outside our organization.
There are two approaches I m
You might find this useful. If makes creating time series aggregations a
little easier. It uses JSON facets under the covers and is very fast.
https://lucene.apache.org/solr/guide/7_6/stream-source-reference.html#timeseries
Joel Bernstein
http://joelsolr.blogspot.com/
On Wed, Jun 19, 2019 at 1:
There are two approaches I might use, which is really up to you.
- You can do a regex filter. So define your extra fields as you want, then use
a regex charFilter (NOT filter, you want to transform the entire input) to peel
out the separate parts. Then copyfield to each one, each with a differen
Hi all,
I'm trying to have a date field automatically generate some facets of itself,
like hour of the day and hour of the week as examples, when its stored. I was
looking at this tutorial and it deemed to almost do what I wanted
https://nathanfriend.io/2017/06/26/smart-date-searching-with-solr.