Re: How to create a solr collection providing as much searching flexibility as possible?

2018-04-30 Thread Alessandro Benedetti
Hi Raymond, as Charlie correctly stated, the input format is not that important, what is important is to focus on your requirements and properly design a configuration and data model to solve them. Extracting the information for such a data format is not going to be particularly challenging ( as

Re: How to create a solr collection providing as much searching flexibility as possible?

2018-04-30 Thread Charlie Hull
On 29/04/2018 22:25, Raymond Xie wrote: Thank you Alessandro, It looks like my requirement is vague, but indeed I already indicated my data is in FIX format, which is a format, here is an example in the Wiki link in my original question: 8=FIX.4.2 | 9=178 | 35=8 | 49=PHLX | 56=PERS |

Re: How to create a solr collection providing as much searching flexibility as possible?

2018-04-29 Thread Raymond Xie
Thank you Alessandro, It looks like my requirement is vague, but indeed I already indicated my data is in FIX format, which is a format, here is an example in the Wiki link in my original question: 8=FIX.4.2 | 9=178 | 35=8 | 49=PHLX | 56=PERS | 52=20071123-05:30:00.000 | 11=ATOMNOCCC9990900 |

Re: How to create a solr collection providing as much searching flexibility as possible?

2018-04-28 Thread Alessandro Benedetti
Hi Raymond, your requirements are quite vague, Solr offers you those capabilities but you need to model your configuration and data accordingly. https://lucene.apache.org/solr/guide/7_3/solr-tutorial.html is a good starting point. After that you can study your requirements and design the search

How to create a solr collection providing as much searching flexibility as possible?

2018-04-27 Thread Raymond Xie
I have huge amount of data in FIX format ( https://en.wikipedia.org/wiki/Financial_Information_eXchange) I want to give the data users the most flexibility to do their search, usually like trading date range, order id or type, amount, Can anyone share any experience on that? Thanks.