Re: MongoDb vs Solr

2017-08-12 Thread Leonardo Perez Pulido
The main reason to chose Solr is the capacity of it has of return results sorted by relevance. Solr returns documents in ranked order based on how relevant each document is to the user's query. Solr isn't a database, although it can 'store' data. Regards. On Sat, Aug 12, 2017 at 2:27 PM, Dave

Re: SolrJ Java API examples

2017-09-14 Thread Leonardo Perez Pulido
Hi, This may help: https://github.com/leoperezpulido/lucene-solr/tree/master/solr/solrj/src/test/org/apache/solr/client/solrj Regards. On Thu, Sep 14, 2017 at 4:21 AM, Vishal Srivastava wrote: > Hi, > I'm a beginner at SolrJ , and am currently looking to implement

Re: Recommended Python Library for Complex Querying?

2017-08-30 Thread Leonardo Perez Pulido
Hi, Maybe this can help: http://lucene.apache.org/pylucene/ Regards. On Wed, Aug 30, 2017 at 2:44 AM, ron visbord wrote: > Hi all, > > I'm rebuilding the Solr part of my search engine in Python. > > I work with both Solr 5[.2.1] and 6[.3.0]. > > I looked around but found

Re: Solr client

2017-08-30 Thread Leonardo Perez Pulido
Hi, Apart from take a look at the Solr's wiki, I think one of the main reasons why these API's are all out dated is that Solr itself provides the 'API' to many different languages in the form of output formats. Maybe you know that the main protocol used in Solr for communication with its clients

Re: "What is Solr" in Google search results

2017-08-30 Thread Leonardo Perez Pulido
Hi, I think there are many things to consider besides the 'normal' search you did: - First of all, Google search results vary. The search algorithm of google changes all the time. - Many different elements determine 'what' google scores as top docs in search results, among them: - The device you

Re: Error when using IndexMergeTool

2017-08-25 Thread Leonardo Perez Pulido
Hi, Isn't the Windows classpath separator a semi-colon? Like this: cene-core-6.5.1.jar"*;*"C:solr/serve Just saying. Regards. On Fri, Aug 25, 2017 at 8:33 PM, Zheng Lin Edwin Yeo wrote: > Hi Erick, > > Thanks for your reply. > I have check, it was not due to the typo. The

Process to fix typos in ref-guide

2017-08-28 Thread Leonardo Perez Pulido
Hi, How is the process to help fix typos in Solr's ref. guide? Can I merge it directly to master? @Cassandra. Thanks.

Re: Process to fix typos in ref-guide

2017-08-28 Thread Leonardo Perez Pulido
r pick it up. > > And probably not only master but 7x as well. > > Erick > > On Mon, Aug 28, 2017 at 1:32 PM, Leonardo Perez Pulido > <leoperezpul...@gmail.com> wrote: > > Hi, > > How is the process to help fix typos in Solr's ref. guide? Can I merge it > > directly to master? > > @Cassandra. > > Thanks. >

Re: FastVector does not highlight for phrase query when it contains stop word/s

2017-08-21 Thread Leonardo Perez Pulido
Hi, Do you analyze your text with StopFilterFactory, in your field type? Regards. On Mon, Aug 21, 2017 at 11:47 AM, Jagdish Vasani < jagdish.vas...@thedigitalgroup.com> wrote: > Hi Solr Users, > > I come across issue that fast Vector highlighter does not highlight field > values when search for

SolrJ SolrInputDocument#addField doesn't throw an exception

2018-04-02 Thread Leonardo Perez Pulido
Hi all, It would be nice if org.apache.solr.common.SolrInputDocument#addField throw an exception when field name is 'id' and the method detect that the indexed id is not unique, just like the post.jar tool. I was confident that both had the same behavior, so... Thanks.