Re: MorphlineSolrSink

2013-07-15 Thread Israel Ekpo
Rajesh, I think this question is better suited for the FLUME user mailing list. You will need to configure the sink with the expected values so that the events from the channels can head to the right place. On Mon, Jul 15, 2013 at 4:49 PM, Rajesh Jain wrote: > Newbie question: > > I have a Flu

Re: [ANNOUNCEMENT] PHP Solr Extension 1.0.1 Stable Has Been Released

2011-06-23 Thread Israel Ekpo
I am working on that, I hope to have an answer within a month or so. On Tue, Jun 21, 2011 at 9:51 AM, roySolr wrote: > Are you working on some changes to support earlier versions of PHP? > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/ANNOUNCEMENT-PHP-Solr-Extension-1

Re: [ANNOUNCEMENT] PHP Solr Extension 1.0.1 Stable Has Been Released

2011-06-11 Thread Israel Ekpo
it looks like you have to upgrade to php 5.3.x Unfortunately, it looks like that method signature was different in that version of PHP. I would have to make additional changes to support the earlier versions of PHP On Tue, Jun 7, 2011 at 9:05 AM, roySolr wrote: > Hello, > > I have some problem

[ANNOUNCEMENT] PHP Solr Extension 1.0.1 Stable Has Been Released

2011-06-04 Thread Israel Ekpo
Links - Package home: http://pecl.php.net/package/solr Changelog: http://pecl.php.net/package-changelog.php?package=solr Download: http://pecl.php.net/get/solr-1.0.1.tgz Authors - Israel Ekpo (lead) -- °O° "Good Enough" is not good enough. To give anything less

Re: phpnative response writer in SOLR 3.1 ?

2011-05-08 Thread Israel Ekpo
Sorry for the late response. I am working on an updated version for the latest release of Solr and Lucene I will post my changes soon within the week. Thank you for your patience. On Fri, Apr 15, 2011 at 3:20 AM, Ralf Kraus wrote: > Am 14.04.2011 09:53, schrieb Ralf Kraus: > > Hello, >> >> I

Re: PECL SOLR PHP extension, JSON output

2011-05-08 Thread Israel Ekpo
There are instructions here for Solr 1.4 https://issues.apache.org/jira/browse/SOLR-1967 I have not finished the version of the plugin that will allow you to use phpnative in 3.1 yet I will post them as soon as I can I have not been working on the PECL extension for a while now but I am plannin

Re: Solr Php Client

2011-04-09 Thread Israel Ekpo
Cool. I will take a look at the issue later tomorrow. On Fri, Apr 8, 2011 at 2:28 AM, Haspadar wrote: > I'm entering only a query parameter. > I posted a bug description there - > http://pecl.php.net/bugs/bug.php?id=22634 > > > 2011/4/8 Israel Ekpo > > > Hi,

Re: Solr Php Client

2011-04-07 Thread Israel Ekpo
Hi, Could you send the enter list of parameters you are ending to solr via the SolrClient and SolrQuery object? Please open a bug request here with the details http://pecl.php.net/bugs/report.php?package=solr On Thu, Apr 7, 2011 at 7:59 PM, Haspadar wrote: > Hello > I updated Solr to version

Re: New PHP API for Solr (Logic Solr API)

2011-03-26 Thread Israel Ekpo
Lukas, How do you think it should have been designed? Most libraries are not going to have all the features that you need and while there may be features about the library that you do not like others may really appreciate them being there. As I said earlier in an earlier email a couple of months

Re: solr init.d script

2010-11-09 Thread Israel Ekpo
or now. > > Do you recommend running jboss with solr via servlet? Two jboss run in > load-balancing for high availability purpose. > > For now it seems to be ok. > > > On 11/09/2010 03:17 PM, Israel Ekpo wrote: > >> I think it would be a better idea to load solr via a

Re: solr init.d script

2010-11-09 Thread Israel Ekpo
I think it would be a better idea to load solr via a servlet container like Tomcat and then create the init.d script for tomcat instead. http://wiki.apache.org/solr/SolrTomcat#Installing_Tomcat_6 On Tue, Nov 9, 2010 at 2:47 AM, Eric Martin wrote: > Er, what flavor? > > RHEL / CentOS > > #!/bin/

ZendCon 2010 - Slides on Building Intelligent Search Applications with Apache Solr and PHP 5

2010-11-03 Thread Israel Ekpo
Due to popular demand, the link to my slides @ ZendCon are now available here in case anyone else is looking for it. http://slidesha.re/bAXNF3 The sample code will be uploaded shortly. Feedback is also appreciated http://joind.in/2261 -- °O° "Good Enough" is not good enough. To give anything

Re: Implementing Search Suggestion on Solr

2010-10-27 Thread Israel Ekpo
I think you may want to configure the field type used for the spell check to use the synonyms file/database. That way synonyms are also processed during index time. This could help. On Wed, Oct 27, 2010 at 6:47 AM, Antonio Calo' wrote: > Hi > > If I understood, you will build a kind of diction

Re: Documents are deleted when Solr is restarted

2010-10-26 Thread Israel Ekpo
The Solr home is the -Dsolr.solr.home Java System property Also make sure that -Dsolr.data.dir is define for your data directory, if it is not already defined in the solrconfig.xml file On Tue, Oct 26, 2010 at 10:46 AM, Upayavira wrote: > You need to watch what you are setting your solr.home to

Re: Highlighting for non-stored fields

2010-10-26 Thread Israel Ekpo
Check out this link http://wiki.apache.org/solr/FieldOptionsByUseCase You need to store the field if you want to use the highlighting feature. If you need to retrieve and display the highlighted snippets then the fields definitely needs to be stored. To use term offsets, it will be a good idea

Re: Modelling Access Control

2010-10-25 Thread Israel Ekpo
On Mon, Oct 25, 2010 at 8:16 AM, Paul Carey wrote: > Many thanks for all the responses. I now plan on benchmarking and > validating both the filter query approach, and maintaining the ACL > entirely outside of Solr. I'll decide from there. > > Paul > Great. I am looking forward for some feedba

Re: Modelling Access Control

2010-10-23 Thread Israel Ekpo
27; > > EARTH has a Right To Life, > otherwise we all die. > > > --- On Sat, 10/23/10, Israel Ekpo wrote: > > > From: Israel Ekpo > > Subject: Re: Modelling Access Control > > To: solr-user@lucene.apache.org > > Date: Saturday, October 23, 2010, 7:01 A

Re: Modelling Access Control

2010-10-23 Thread Israel Ekpo
Hi Paul, Regardless of how you implement it, I would recommend you use filter queries for the permissions check rather than making it part of the main query. On Sat, Oct 23, 2010 at 4:03 AM, Paul Carey wrote: > Hi > > My domain model is made of users that have access to projects which > are com

Re: Solr PHP PECL Extension going to Stable Release - Wishing for Any New Features?

2010-10-19 Thread Israel Ekpo
Matheis < matheis.ste...@googlemail.com> wrote: > On Tue, Oct 12, 2010 at 6:29 PM, Israel Ekpo wrote: > > > I think this feature will take care of this. > > > > What do you think? > > > sounds good! > -- °O° "Good Enough" is not good enough. To g

Re: Removing Common Web Page Header and Footer from All Content Fetched by Nutch

2010-10-19 Thread Israel Ekpo
ext :: http://sematext.com/ :: Solr - Lucene - Nutch > > Lucene ecosystem search :: http://search-lucene.com/ > > > > > > > > - Original Message > > > > > From: Israel Ekpo > > > To: solr-user@lucene.apache.org; u...@nutch.apache.org > > > Sent: Mon, Oc

Re: Setting solr home directory in websphere

2010-10-18 Thread Israel Ekpo
You need to make sure that the following system variable is one of the values specific in the JAVA_OPTS environment variable -Dsolr.solr.home=path_to_solr_home On Mon, Oct 18, 2010 at 10:20 PM, Kevin Cunningham < kcunning...@telligent.com> wrote: > I've installed Solr a hundred times using Tom

Removing Common Web Page Header and Footer from All Content Fetched by Nutch

2010-10-18 Thread Israel Ekpo
Hi All, I am indexing a web application with approximately 9500 distinct URL and contents using Nutch and Solr. I use Nutch to fetch the urls, links and the crawl the entire web application to extract all the content for all pages. Then I run the solrindex command to send the content to Solr. T

Re: Commits on service after shutdown

2010-10-18 Thread Israel Ekpo
The documents should be implicitly committed when the Lucene index is closed. When you perform a graceful shutdown, the Lucene index gets closed and the documents get committed implicitly. When the shutdown is abrupt as in a KILL -9, then this does not happen and the updates are lost. You can us

Re: Term is duplicated when updating a document

2010-10-15 Thread Israel Ekpo
Which fields are modified when the document is updated/replaced. Are there any differences in the content of the fields that you are using for the AutoSuggest. Have you changed you schema.xml file recently? If you have, then there may have been changes in the way these fields are analyzed and bro

Re: Solr PHP PECL Extension going to Stable Release - Wishing for Any New Features?

2010-10-12 Thread Israel Ekpo
On Tue, Oct 12, 2010 at 12:44 PM, Ken Stanley wrote: > > > > > > If you are using Solr via PHP and would like to see any new features > in > > > the > > > > extension please feel free to send me a note. > > > > I'm new to this list, but in seeing this thread - and using PHP SOLR - I > wanted to m

Re: Solr PHP PECL Extension going to Stable Release - Wishing for Any New Features?

2010-10-12 Thread Israel Ekpo
On Tue, Oct 12, 2010 at 8:43 AM, Stefan Matheis < matheis.ste...@googlemail.com> wrote: > Hi Isreal, > > On Mon, Oct 11, 2010 at 7:03 AM, Israel Ekpo wrote: > > > If you are using Solr via PHP and would like to see any new features in > the > > extension p

Re: Solr PHP PECL Extension going to Stable Release - Wishing for Any New Features?

2010-10-12 Thread Israel Ekpo
On Tue, Oct 12, 2010 at 7:42 AM, Peter Blokland wrote: > hi, > > On Mon, Oct 11, 2010 at 01:03:07AM -0400, Israel Ekpo wrote: > > > If you are using Solr via PHP and would like to see any new features in > the > > extension please feel free to send me a note. > &

Re: Solr PHP PECL Extension going to Stable Release - Wishing for Any New Features?

2010-10-12 Thread Israel Ekpo
On Mon, Oct 11, 2010 at 3:33 AM, Lukas Kahwe Smith wrote: > > On 11.10.2010, at 07:03, Israel Ekpo wrote: > > > I am currently working on a couple of bug fixes for the Solr PECL > extension > > that will be available in the next release 0.9.12 sometime this month. >

Solr PHP PECL Extension going to Stable Release - Wishing for Any New Features?

2010-10-10 Thread Israel Ekpo
Hi All, I am currently working on a couple of bug fixes for the Solr PECL extension that will be available in the next release 0.9.12 sometime this month. http://pecl.php.net/package/solr Documentation of the current API and features for the PECL extension is available here http://www.php.net/s

Re: [PECL-DEV] Re: PHP Solr API

2010-10-01 Thread Israel Ekpo
Scott, You can also use the SolrClient::setServlet() method with SolrClient::TERMS_SERVLET_TYPE as the type http://www.php.net/manual/en/solrclient.setservlet.php On Fri, Oct 1, 2010 at 12:57 AM, Scott Yeadon wrote: > Hi, > > Sorry, scrap that, just found that SolrQuery is a subclass of > Mo

Re: Null Pointer Exception while indexing

2010-09-16 Thread Israel Ekpo
Try removing the data directory and then restart your Servlet container and see if that helps. On Thu, Sep 16, 2010 at 3:28 AM, Lance Norskog wrote: > Which version of Solr? 1.4?, 1.4.1? 3.x branch? trunk? if the 3.x or the > trunk, when did you pull it? > > > andrewdps wrote: > >> What could be

Re: ANNOUNCE: Stump Hoss @ Lucene Revolution

2010-08-23 Thread Israel Ekpo
Chris, I have a couple of questions I would like to through your way. Is there a place where one can sign up for this. Is sounds very interesting. On Mon, Aug 23, 2010 at 4:49 PM, Chris Hostetter wrote: > > Hey everybody, > > As you (hopefully) have heard by now, Lucid Imagination is sponsorin

Re: Disk usage per-field

2010-07-03 Thread Israel Ekpo
Currently, this feature is not available. The amount of space a field consumes varies and depends on whether the field is index only, stored only or indexed and stored. It also depends on how the field is analyzed On Fri, Jul 2, 2010 at 2:59 PM, Shawn Heisey wrote: > On 6/30/2010 5:44 PM, Shaw

[NEWS] New Response Writer for Native PHP Solr Client

2010-06-22 Thread Israel Ekpo
Hi Solr users, If you are using Apache Solr via PHP, I have some good news for you. There is a new response writer for the PHP native extension, currently available as a plugin. This new feature adds a new response writer class to the org.apache.solr.request package. This class is used by the P

[PECL-DEV] [ANNOUNCEMENT] solr-0.9.11 (beta) Released

2010-06-21 Thread Israel Ekpo
Changelog: http://pecl.php.net/package-changelog.php?package=solr Download: http://pecl.php.net/get/solr-0.9.11.tgz Documentation http://docs.php.net/ Authors - Israel Ekpo (lead) -- "Good Enough" is not good enough. To give anything less than your best is to sacrifice the

Re: SOLR search performance - Linux vs Windows servers

2010-06-16 Thread Israel Ekpo
Thats a good note. I get this kind of question a lot. Most of the time, the reason is because there are database servers (MySQL) and Webservers (Apache) and other processes running on the Linux box. Try to verify that the load, number of processors/cores as well as other environment settings are

Re: Need help with document format

2010-06-07 Thread Israel Ekpo
hat you guys said better? > > Thanks for all the help. > > Moazzam > > > On Mon, Jun 7, 2010 at 1:10 AM, Lance Norskog wrote: > > And for 'present', you would pick some time far in the future: > > 2100-01-01T00:00:00Z > > > > On 6/5

Re: Need help with document format

2010-06-05 Thread Israel Ekpo
You need to make each document added to the index a 1 to 1 mapping for each company and consultant combo text 1_1 Michael Davis AOL 2006-02-13T15:26:37Z 2008-02-13T15:26:37Z 1_4 Michael Davis Google

Re: Solr spellchecker field

2010-05-28 Thread Israel Ekpo
Dejan, How are you making the calls from PHP to Solr? I am curious to know why the documents could not be parsed On Fri, May 28, 2010 at 5:00 AM, Dejan Noveski wrote: > Thank you very much! > > On Fri, May 28, 2010 at 10:57 AM, Erik Hatcher >wrote: > > > A field used to build a spellcheck ind

Re: Bitwise Operations on Integer Fields in Lucene and Solr Index

2010-05-13 Thread Israel Ekpo
Correction, I meant to list https://issues.apache.org/jira/browse/LUCENE-2460 https://issues.apache.org/jira/browse/SOLR-1913 On Thu, May 13, 2010 at 10:13 PM, Israel Ekpo wrote: > I have created two ISSUES as new features > > https://issues.apache.org/jira/browse/LUCENE-1560

Re: Best way to handle bitfields in solr...

2010-05-13 Thread Israel Ekpo
William, This QParserPlugin should solve that problem now. Check out https://issues.apache.org/jira/browse/SOLR-1913 BitwiseQueryParserPlugin is a org.apache.solr.search.QParserPlugin that allows users to filter the documents returned from a query by performing bitwise operations between a parti

Re: Bitwise Operations on Integer Fields in Lucene and Solr Index

2010-05-13 Thread Israel Ekpo
available for use immediately. On Thu, May 13, 2010 at 6:42 PM, Andrzej Bialecki wrote: > On 2010-05-13 23:27, Israel Ekpo wrote: > > Hello Lucene and Solr Community > > > > I have a custom org.apache.lucene.search.Filter that I would like to > > contribute to t

Bitwise Operations on Integer Fields in Lucene and Solr Index

2010-05-13 Thread Israel Ekpo
Hello Lucene and Solr Community I have a custom org.apache.lucene.search.Filter that I would like to contribute to the Lucene and Solr projects. So I would need some direction as to how to create and ISSUE or submit a patch. It looks like there have been changes to the way this is done since the

Re: PECL and Spellchecking

2010-05-05 Thread Israel Ekpo
Hi Peter A full list of spell check parameters are available here http://wiki.apache.org/solr/SpellCheckComponent With the PECL extension, there is currently no special method that handles the spell check component so you would have to use the SolrParams::set() or SolrParams::setParam() method a

[PECL-DEV] [ANNOUNCEMENT] solr-0.9.10 (beta) Released

2010-05-04 Thread Israel Ekpo
SSL private key constants due to support for earlier versions of libcurl (Alex Samorukov) - Changed extension version numbers to start using hexadecimal numbers (Israel Ekpo) - Added instructions on how to attempt to compile on windows (Israel Ekpo) - Fixed PECL Bug# 17292 sending UTF-8 encoding in

Re: Evangelism

2010-04-29 Thread Israel Ekpo
be remedied by recommending > professional services from a company such as lucid imagination. > > I think your best bet is to create a working demo with your data and show > them the performance. > > Cheers, > -Kallin Nagelberg > > > > -Original Message- > F

Re: Evangelism

2010-04-29 Thread Israel Ekpo
Their main search page has the "Powered by Solr" logo http://www.lucidimagination.com/search/ On Thu, Apr 29, 2010 at 2:18 PM, Israel Ekpo wrote: > Checkout Lucid Imagination > > http://www.lucidimagination.com/About-Search > > This should convince you. > > &g

Re: Evangelism

2010-04-29 Thread Israel Ekpo
Checkout Lucid Imagination http://www.lucidimagination.com/About-Search This should convince you. On Thu, Apr 29, 2010 at 2:10 PM, Daniel Baughman wrote: > Hi I'm new to the list here, > > > > I'd like to steer someone in the direction of Solr, and I see the list of > companies using solr, but

Re: I have a big problem with pagination using apache solr and haystack

2010-04-20 Thread Israel Ekpo
I hear this sort of complaint frequently. Make ensure you did not forget to send a commit request after deleting any documents you have removed. Until the commit request is made those deletes are not yet finalized and the removed documents will still show up On Tue, Apr 20, 2010 at 2:37 PM, Mitc

Re: Tutorials for developing filter plugins.

2010-04-11 Thread Israel Ekpo
He is referring to the org.apache.lucene.search.Filter classes. Michael, I did a search too and I could not really find any useful tutorials on the subject. You can take a look at how this is implemented in the Spatial Solr Plugin by the JTeam http://www.jteam.nl/news/spatialsolr.html Their co

Re: add/update document as distinct operations? Is it possible?

2010-04-05 Thread Israel Ekpo
Chris, I don't see anything in the headers suggesting that Julian's message was a hijack of another thread On Thu, Apr 1, 2010 at 2:17 PM, Chris Hostetter wrote: > > : Subject: add/update document as distinct operations? Is it possible? > : References: > : > > : In-Reply-To: > : > > > http://p

Re: selecting documents older than 4 hours

2010-04-01 Thread Israel Ekpo
I did something similar. The only difference with my set up is that I have two columns; one that store the dates the document was first created and a second that stores the date it was last updated as unix time stamps So my query to find documents that are older than 4 hours would be very easy T

Re: Features not present in Solr

2010-03-22 Thread Israel Ekpo
On Mon, Mar 22, 2010 at 3:16 PM, Lance Norskog wrote: > Web crawling. I don't think Solr was designed with Web Crawling in mind. Nutch would be more better suited for that, I believe. > Text analysis. > This is a bit vague. Please elaborate further. There is a lot of analysis (stemming, sto

Re: Features not present in Solr

2010-03-20 Thread Israel Ekpo
One feature that is not available in Solr is any licensing fees and fine print. Also you should not expect to pay in order to use Solr. On Fri, Mar 19, 2010 at 11:16 PM, Srikanth B wrote: > Hello > > We are in the process of researching on Solr features. I am looking for two > things >1

Re: Search on dynamic fields which contains spaces /special characters

2010-03-08 Thread Israel Ekpo
I do not believe the SOLR or LUCENE syntax allows this You need to get rid of all the spaces in the field name If not, then you will be searching for "short" in the default field and then "name1" in the "name" field. http://wiki.apache.org/solr/SolrQuerySyntax http://lucene.apache.org/java/2_9_

Re: get Server Status, TotalDocCount .... PHP !

2010-03-02 Thread Israel Ekpo
The last time I tried using SolrPHPClient for this stuff, it did not really handle the response very well because of the JSON response generated on the server side. I am not sure if anything has changed since then. The JSON code generated could not be parsed properly. If you do not want to analy

Re: updating particular field

2010-03-01 Thread Israel Ekpo
Unfortunately, because of how Lucene works internally, you will not be able to update just one or two fields. You have to resubmit the entire document. If you only send just one or two fields, then the updated document will only have the fields sent in the last update. On Mon, Mar 1, 2010 at 7:09

Re: If you could have one feature in Solr...

2010-02-24 Thread Israel Ekpo
Grant, One feature that I would like to see is the ability to do a Bitwise search I have had to work around this with a Query Parser plugin that uses a org.apache.lucene.search.Filter I think having this feature would be very nice and I prefer it to searching with multiple OR type queries especi

Re: Question about custom Lucene filters and Solr

2010-02-16 Thread Israel Ekpo
Hi Jon, You will need to write a plugin You will need custom Query parser and an Update Handler depending on what you are doing. The implementation of an Update Handler or Update Request Processor is not recommended because it is considered to be advanced. Take a look at the following links for

Re: Basic questions about Solr cost in programming time

2010-01-26 Thread Israel Ekpo
On Tue, Jan 26, 2010 at 3:00 PM, Jeff Crump wrote: > Hi, > I hope this message is OK for this list. > > I'm looking into search solutions for an intranet site built with Drupal. > Eventually we'd like to scale to enterprise search, which would include the > Drupal site, a document repository, and

Re: What is this error means?

2010-01-12 Thread Israel Ekpo
Ellery, A preliminary look at the source code indicates that the error is happening because the solr server is taking longer than expected to respond to the client http://code.google.com/p/solr-php-client/source/browse/trunk/Apache/Solr/Service.php The default time out handed down to Apache_Solr

[PECL-DEV] [ANNOUNCEMENT] solr-0.9.9 (beta) Released

2010-01-10 Thread Israel Ekpo
://us.php.net/solr Authors - Israel Ekpo (lead)

Re: Help with creating a solr schema

2010-01-01 Thread Israel Ekpo
On Fri, Jan 1, 2010 at 9:47 PM, JaredM wrote: > > Thanks Ahmet and Israel. I prefer Israel's approach since the amount of > metadata for the user is quite high but I'm not clear how to get around one > problem: > > If I had 2 availabilities (I've left it in human-readable form instead of > as >

Re: solr 1.4 csv import -- Document missing required field: id

2010-01-01 Thread Israel Ekpo
On Fri, Jan 1, 2010 at 9:13 PM, evana wrote: > > Hi, > > I am trying to import a csv file (without "id" field) on solr 1.4 > In schema.xml "id" field is set with required="false". > But I am getting "org.apache.solr.common.SolrException: Document missing > required field: id" > > Following is the

Re: Help with creating a solr schema

2010-01-01 Thread Israel Ekpo
On Thu, Dec 31, 2009 at 10:26 AM, JaredM wrote: > > Hi, > > I'm new to Solr but so far I think its great. I've spent 2 weeks reading > through the wiki and mailing list info. > > I have a use case and I'm not sure what the best way is to implement it. I > am keeping track of peoples calendar sc

Re: NOT highlighting synonym

2009-12-28 Thread Israel Ekpo
I think what Erik was referring to was for you to create a separate copy field with different analyzers and just copy the original value to that copy field and index it differently. That way you can use one field for search and another one to display the highlighting results. On Mon, Dec 28, 20

Re: How use implement Lucene for perl.

2009-12-28 Thread Israel Ekpo
I think you need to send a message to the lucene mailing list instead if you want to use Lucene directly. java-u...@lucene.apache.org The API core Javadoc page has a very simple example which you can use to get started with a few modifications. http://lucene.apache.org/java/3_0_0/api/core/index.

Re: Can solr web site have multiple versions of online API doc?

2009-12-15 Thread Israel Ekpo
2009/12/15 Teruhiko Kurosaka > Lucene keeps multiple versions of its API doc online at > http://lucene.apache.org/java/X_Y_Z/api/all/index.html > for version X.Y.Z. I am finding this very useful when > comparing different versions. This is also good because > the javadoc comments that I write f

Re: solr php client vs file_get_contents?

2009-12-15 Thread Israel Ekpo
On Tue, Dec 15, 2009 at 8:49 AM, Faire Mii wrote: > i am using php to access solr and i wonder one thing. > > why should i use solr php client when i can use > > $serializedResult = file_get_contents('http://localhost:8983/solr/ > select?q=niklas&wt=phps'); > > to get the result in arrays and the

Re: apache-solr-common.jar

2009-12-14 Thread Israel Ekpo
2009/12/14 Noble Paul നോബിള്‍ नोब्ळ् > there is no solrcommon jar anymore. you may use the solrj jar which > contains all the classes which were there in the comon jar. > > On Mon, Dec 14, 2009 at 9:22 PM, gudumba l > wrote: > > Hello All, > > I have been using apache-solr-common-1

Re: SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server'

2009-12-11 Thread Israel Ekpo
On Fri, Dec 11, 2009 at 6:49 AM, regany wrote: > > hi, I've (hopefully correctly) install the solr php extension. > > But I'm receiving the following error when trying to run my test script: > > SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server' > > Any ideas how to figure out wh

Re: Sol server is not set up ??

2009-12-11 Thread Israel Ekpo
n. It should not be skipped this time. Also, I would like to know the version of the Solr extension, the PHP version and the operating system you are using. Please let me know if you need any help. Sincerely, Israel Ekpo -- "Good Enough" is not good enough. To give anything less than your best is to sacrifice the gift. Quality First. Measure Twice. Cut Once. http://www.israelekpo.com/

Re: Indexing content on Windows file shares?

2009-12-10 Thread Israel Ekpo
If you are looking to index websites, Nutch would be a better alternative. However, it could be useful for indexing text files. There is documentation here for how to add data to the index http://lucene.apache.org/solr/tutorial.html#Indexing+Data http://wiki.apache.org/solr/#Search_and_Indexing

Re: SolrQuerySyntax : Types of Range Queries in Solr 1.4

2009-12-09 Thread Israel Ekpo
Wed, Dec 9, 2009 at 1:08 PM, Israel Ekpo wrote: > > Hi Guys, > > > > In Lucene 2.9 and Solr 1.4, it is possible to perform inclusive and > > exclusive range searches with square and curly brackets respectively. > > > > However, when I looked at the SolrQuery

SolrQuerySyntax : Types of Range Queries in Solr 1.4

2009-12-09 Thread Israel Ekpo
Hi Guys, In Lucene 2.9 and Solr 1.4, it is possible to perform inclusive and exclusive range searches with square and curly brackets respectively. However, when I looked at the SolrQuerySyntax, only the the include range search is illustrated. It seems like the examples only talk about the inclu

Re: parsing the raw query string?

2009-12-06 Thread Israel Ekpo
Hi If you are planning to use Solr via PHP, you can take a look at the Solr PECL extension. http://www.php.net/manual/en/book.solr.php which you can download from here http://pecl.php.net/package/solr There is a SolrQuery class that allows you to build and manage the name-value pair parameters

[PECL-DEV] [ANNOUNCEMENT] solr-0.9.8 (beta) Released

2009-12-03 Thread Israel Ekpo
for more details on features. Related Links - Package home: http://pecl.php.net/package/solr Changelog: http://pecl.php.net/package-changelog.php?package=solr Download: http://pecl.php.net/get/solr-0.9.8.tgz Documentation: http://www.php.net/manual/en/book.solr.php Authors ----- Is

Re: Stopping & Starting

2009-12-03 Thread Israel Ekpo
On Thu, Dec 3, 2009 at 5:01 PM, Yonik Seeley wrote: > On Thu, Dec 3, 2009 at 4:57 PM, Lee Smith wrote: > > Hello All > > > > I am just starting out today with solr and looking for some advice but I > > first have a problem. > > > > I ran the start command ie. > > > > user:~/solr/example$ java -ja

Re: Announcing the Apache Solr extension in PHP - 0.9.0

2009-11-23 Thread Israel Ekpo
wrote: > Thanks Israel, exactly what I was looking for, but how would one get a > pre-compiled dll for windows? using PHP 5.3 VS9 TS. > > On Mon, Oct 5, 2009 at 7:03 AM, Israel Ekpo wrote: > > Fellow Apache Solr users, > > > > I have been working on a PHP extension

Re: Solr 1.3 query and index perf tank during optimize

2009-11-17 Thread Israel Ekpo
On Tue, Nov 17, 2009 at 2:24 PM, Chris Hostetter wrote: > > : Basically, search entries are keyed to other documents. We have finite > : storage, > : so we purge old documents. My understanding was that deleted documents > : still > : take space until an optimize is done. Therefore, if I don't

[ANNOUNCEMENT] solr-0.9.7 (beta) Released

2009-11-17 Thread Israel Ekpo
: http://pecl.php.net/get/solr-0.9.7.tgz Authors - Israel Ekpo (lead)

Re: Solr - Load Increasing.

2009-11-16 Thread Israel Ekpo
On Mon, Nov 16, 2009 at 5:22 PM, Walter Underwood wrote: > Probably "lakh": 100,000. > > So, 900k qpd and 3M docs. > > http://en.wikipedia.org/wiki/Lakh > > wunder > > On Nov 16, 2009, at 2:17 PM, Otis Gospodnetic wrote: > > > Hi, > > > > Your autoCommit settings are very aggressive. I'm guessing

Re: PhP, Solr and Delta Imports

2009-11-16 Thread Israel Ekpo
On Mon, Nov 16, 2009 at 2:49 PM, Pablo Ferrari wrote: > Hello, > > I have an already working Solr service based un full imports connected via > php to a Zend Framework MVC (I connect it directly to the Controller). > I use the SolrClient class for php which is great: > http://www.php.net/manual/en

Re: Newbie tips: migrating from mysql fulltext search / PHP integration

2009-11-15 Thread Israel Ekpo
On Mon, Nov 16, 2009 at 12:34 AM, Mattmann, Chris A (388J) < chris.a.mattm...@jpl.nasa.gov> wrote: > WOW, +1!! Great job, PHP! > > Cheers, > Chris > > > > On 11/15/09 10:13 PM, "Otis Gospodnetic" > wrote: > > Hi, > > I'm not sure if you have a specific question there. > But regarding "PHP integra

Re: Are subqueries possible in Solr? If so, are they performant?

2009-11-12 Thread Israel Ekpo
On Thu, Nov 12, 2009 at 3:39 PM, Chris Hostetter wrote: > > : I am getting results from one query and I just need 2 index attribute > values > : . These index attribute values are used for form new Query to Solr. > > can you elaborate on what exactly you mean by "These index attribute > values are

Re: Commit error

2009-11-11 Thread Israel Ekpo
2009/11/11 Licinio Fernández Maurelo > Hi folks, > > i'm getting this error while committing after a dataimport of only 12 docs > !!! > > Exception while solr commit. > java.io.IOException: background merge hit exception: _3kta:C2329239 > _3ktb:c11->_3ktb into _3ktc [optimize] [mergeDocStores] >

Re: adding and updating a lot of document to Solr, metadata extraction etc

2009-11-10 Thread Israel Ekpo
On Tue, Nov 10, 2009 at 8:26 AM, Eugene Dzhurinsky wrote: > On Tue, Nov 03, 2009 at 05:49:23PM -0800, Lance Norskog wrote: > > The DIH has improved a great deal from Solr 1.3 to 1.4. You will be > > much better off using the DIH from this. > > > > This is the current Solr release candidate binary

Re: Representing a complex schema in solr

2009-11-07 Thread Israel Ekpo
On Sat, Nov 7, 2009 at 11:37 PM, Rakhi Khatwani wrote: > Hi, > > i have a complex schema as shown below: > > Book >- Title >- Category >- Publication >- Edition >- Publish Date >- Author (multivalued) => Author is a multivalued field containing > the following attr

Re: how to use ajax-solr - example?

2009-11-04 Thread Israel Ekpo
On Wed, Nov 4, 2009 at 10:48 AM, Joel Nylund wrote: > Hi, I looked at the documentation and I have no idea how to get started? > Can someone point me to or show me an example of how to send a query to a > solr server and paginate through the results using ajax-solr. > > I would glady write a blog

Re: Free live video streaming of ApacheCon US 2009

2009-11-04 Thread Israel Ekpo
Thanks a lot. This will be very helpful to me. As I am not able to attend. On Wed, Nov 4, 2009 at 8:25 AM, Michael McCandless < luc...@mikemccandless.com> wrote: > Team, > > For those Lucene fanatics not in Oakland this week for ApacheCon US, > don't miss the FREE live video streaming, starting

Re: How to integrate Solr into my project

2009-11-03 Thread Israel Ekpo
2009/11/3 Licinio Fernández Maurelo > Hi Caroline, > > i think that you must take an overview tour ;-) , solrj is just a solr java > client ... > > Some clues: > > > - Define your own index schema > (it's just like a SQL DDL) . > - There are different wa

Re: tracking solr response time

2009-11-02 Thread Israel Ekpo
ng rhel server 5 on both client and server .. we > have 6 solr sever . one is acting as master . both client and solr > sever are on the same network . those servers are dedicated solr > server except 2 severs which have DB and memcahce running .. we have > adjusted the load accordingly

Re: tracking solr response time

2009-11-02 Thread Israel Ekpo
On Mon, Nov 2, 2009 at 8:41 AM, Yonik Seeley wrote: > On Mon, Nov 2, 2009 at 8:13 AM, bharath venkatesh > wrote: > >We are using solr for many of ur products it is doing quite well > > . But since no of hits are becoming high we are experiencing latency > > in certain requests ,about 15% of

Re: adding and updating a lot of document to Solr, metadata extraction etc

2009-10-30 Thread Israel Ekpo
On Fri, Oct 30, 2009 at 11:23 AM, Eugene Dzhurinsky wrote: > Hi there! > > We are trying to evaluate Apache Solr for our custom search implementation, > which > includes the following requirements: > > - ability to add/update/delete a lot of documents at once > > - ability to iterate over all docu

Re: Indexing multiple entities

2009-10-29 Thread Israel Ekpo
On Thu, Oct 29, 2009 at 3:31 PM, Christian López Espínola < penyask...@gmail.com> wrote: > Hi, my name is Christian and I'm a newbie introducing to solr (and solrj). > > I'm working on a website where I want to index multiple entities, like > Book or Magazine. > The issue I'm facing is both of the

Version 0.9.3 of the PECL extension for solr has just been released

2009-10-19 Thread Israel Ekpo
Version 0.9.3 of the PECL extension for solr has just been released. Some of the methods have been updated and more get* methods have been added to the Query builder classes. The user level documentation was also updated to make the installation instructions a lot clearer. The latest documentati

Re: Solr 1.4 Release Party

2009-10-12 Thread Israel Ekpo
It is my email signature. It is a sort of hybrid/mashup from different sources. On Mon, Oct 12, 2009 at 6:49 PM, Michael Masters wrote: > Where does the quote come from :) > > On Sat, Oct 10, 2009 at 6:38 AM, Israel Ekpo wrote: > > I can't wait... > > > >

Solr 1.4 Release Party

2009-10-10 Thread Israel Ekpo
I can't wait... -- "Good Enough" is not good enough. To give anything less than your best is to sacrifice the gift. Quality First. Measure Twice. Cut Once.

Announcing the Apache Solr extension in PHP - 0.9.0

2009-10-04 Thread Israel Ekpo
Fellow Apache Solr users, I have been working on a PHP extension for Apache Solr in C for quite sometime now. I just finished testing it and I have completed the initial user level documentation of the API Version 0.9.0-beta has just been released. It already has built-in readiness for Solr 1.4

Re: Quotes in query string cause NullPointerException

2009-10-01 Thread Israel Ekpo
Don't be too hard on yourself. Sometimes, mistakes like that can happen even to the most brilliant and most experienced. On Thu, Oct 1, 2009 at 2:15 PM, Andrew Clegg wrote: > > Sorry! I'm officially a complete idiot. > > Personally I'd try to catch things like that and rethrow a > 'QueryParseEx

  1   2   >