AW: PHP + Solr

2014-01-28 Thread Alexander Golubowitsch
Hi Felipe, I would advise to go with Solarium here. The PHP PECL integration is outdated to a degree that renders it almost useless by now. It has a couple of bugs when fetching large result sets. Good luck, Alex -Ursprüngliche Nachricht- Von: Felipe Dantas de Souza Paiva [mailto:c

Re: How to retrive all terms with their frequency in that website.

2013-02-21 Thread Alexander Golubowitsch
I guess the Term Vector Component might satisfy all or most of what you're trying to do: http://wiki.apache.org/solr/TermVectorComponent On 21.02.2013 12:58, search engn dev wrote: I have indexed data of 10 websites in solr. Now i want to dump data of each website with following format : [Term

Re: Filter Queries: Intersection

2012-03-16 Thread Alexander Golubowitsch
-myfield:*) Best Erick On Thu, Mar 15, 2012 at 10:23 AM, Alexander Golubowitsch wrote: Hi all, I'm facing problems regarding multiple Filter Queries in SOLR 1.4.1 - I hope some one will be able to help. Example 1 - works fine: {!tag=myfieldtag}(-(myfield:*)) Example 2 - works fine

Filter Queries: Intersection

2012-03-15 Thread Alexander Golubowitsch
Hi all, I'm facing problems regarding multiple Filter Queries in SOLR 1.4.1 - I hope some one will be able to help. Example 1 - works fine: {!tag=myfieldtag}(-(myfield:*)) Example 2 - works fine: {!tag=myfieldtag}((myfield:"Bio" | myfield:"Alexa")) Please note that in Example 2, result sets

RE: import Data via PHP

2011-07-14 Thread Alexander Golubowitsch
Hi Jörg, what exactly do you mean by "it doesn't work"? Is there some kind of error message? In any case you will at least want to url_encode() the data you add into that Curl url. Generally: - You can import data e.g. via a CSV file - You can use the Solr PHP PECL extension (which offers a few

RE: problem in setting field attribute in schema.xml

2011-05-26 Thread Alexander Golubowitsch
Hi Romi, as someone mentioned earlier already: indexed - The field value can be "matched" when you search on that field (field:"some-value-to-match") stored -The field value can be "retrieved" from Solr in result sets (result docs can include that field and its value) @ Indexing i

copyField generates "multiple values encountered for non multiValued field"

2011-05-25 Thread Alexander Golubowitsch
Dear list, hope somebody can help me understand/avoid this. I am sending an "add" request with allowDuplicates=false to a Solr 1.4.1 instance. This is for debugging purposes, so I am sending the exact same data that are already stored in Solr's index. I am using the PHP PECL libraries, which f