indexing unique keys

2014-09-04 Thread Mark , N
I have a use-case where we want to store unique keys ( Hashes) which would be used to compare against another set of keys ( Hashes) For example Index set= { h1, h2 , h3 , h4 } comparision set = { h1 , h2 } result set = h1,h2 Would it be an advantage to store index set in Solr instead of

search hit on multivalued fields

2012-08-03 Thread Mark , N
I have a multivalued field Tex which is indexed , for example : F1: some value F2: some value Text = ( content of f1,f2) When user search , I am checking only a Text field but i would also need to display to users which Field ( F1 or F2 ) resulted the search hit Is it possible in SOLR ?

Re: filtering number and repeated contents

2012-06-07 Thread Mark , N
signature text strings to be removed from field values. -- Jack Krupansky -Original Message- From: Mark , N Sent: Tuesday, June 05, 2012 8:28 AM To: solr-user@lucene.apache.org Subject: filtering number and repeated contents Is it possible to filter out numbers and disclaimer ( repeated

filtering number and repeated contents

2012-06-05 Thread Mark , N
Is it possible to filter out numbers and disclaimer ( repeated contents) while indexing to SOLR? These are all surplus information and do not want to index it I have tried using boilerpipe algorithm as well to remove surplus infromation from web pages such as navigational elements, templates, and

filtering footer information

2012-05-23 Thread Mark , N
Is it possible to filter certain repeated footer information from text documents while indexing to solr ? Are there any built-in filters similar to stop word filters ? -- Thanks, *Nipen Mark *

Re: wildcard and proximity searches

2010-10-05 Thread Mark N
Hi were you successful in trying SOLR -1604 to allow wild card queries in phrases ? Also does this plugin allow us to use proximity with wild card * solr mail*~10 * If this the right approach to go ahead to support these functionalities? thanks Mark On Wed, Aug 4, 2010 at 2:24

Re: wildcard and proximity searches

2010-10-05 Thread Mark N
Thanks ahmet Is it also possible to search the document having a field ENDING with week* query should return documents with a field ending with week and its derivatives such as weekly,weeks So above query should return this week Past three weeks Report weekly thanks chandan On Tue, Oct

Re: question on wild card

2010-07-15 Thread Mark N
:48 AM, Mark N nipen.m...@gmail.com wrote: I have a database field = hello world and i am indexing to *text* field with standard analyzer ( text is a copy field of solr) Now when user gives a query text:hello world% , how does the query is interpreted in the background are we

question on wild card

2010-07-14 Thread Mark N
I have a database field = hello world and i am indexing to *text* field with standard analyzer ( text is a copy field of solr) Now when user gives a query text:hello world% , how does the query is interpreted in the background are we actually searchingtext: hello OR text: world%(

Two analyzer per field

2010-07-12 Thread Mark N
Is it possible to specify two analyzers per fields for example , consider a field *F1 *( keyword analyzer) = cheers mate *F2 *(keyword analyzer ) = hello world There is also a copy field *TEXT *( standard analyzer ) which will store the terms {

Solr DataImportHandler

2010-04-08 Thread Mark N
Is it possible to use solr DataImportHandler when that database fields are not fixed ? As per my findings we need to configure which table ( entity) we will read the data and must match which fields in database will map to fields in solr schema Since in my case database fields could be dynamic ,

indexing a huge data

2010-03-05 Thread Mark N
what should be the fastest way to index a documents , I am indexing huge collection of data after extracting certain meta - data information for example author and filename of each files i am extracting these information and storing in XML format for example : fileid 1fileidauthorabc /author

Re: Getting max/min dates from solr index

2010-02-16 Thread Mark N
-lucene.com/?q=StatsComponent Otis Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Hadoop ecosystem search :: http://search-hadoop.com/ - Original Message From: Mark N nipen.m...@gmail.com To: solr-user@lucene.apache.org Sent: Wed, February 10, 2010 8:12:43 AM

Getting max/min dates from solr index

2010-02-10 Thread Mark N
How can we get the max and min date from the Solr index ? I would need these dates to draw a graph ( for example timeline graph ) Also can we use date faceting to show how many documents are indexed every month . Consider I need to draw a timeline graph for current year to show how many records

solr updateCSV

2010-01-07 Thread Mark N
I am trying to use solr's csv updater to index the data , i am tryin to specify the .Dat format consisting of field seperator , text qualifier and a line seperator for example field 1 field separator field 2field seperator text qualifiervalue for field 1text qualifierfield seperatortext

Indexing large text documents

2010-01-05 Thread Mark N
SolrInputDocument doc1 = new SolrInputDocument(); doc1.addField( Fulltext, strContent); strContent is a string variable which contains contents of text file. ( assume that text file is located in c:\files\abc.txt ) In my case abc.text ( text files ) could be very huge ~ 2 GB so it is not

Enumerating wildcard terms

2009-12-08 Thread Mark N
Is it possible to enumerate all terms that match the specified wildcard filter term. Similar to Lunce WildCardTermEnum API for example if I search abc* then I just should able to access all the terms abc1, abc2 , abc3... that exists in Index What should be better approach to meet this

Re: nested solr queries

2009-11-30 Thread Mark N
shalinman...@gmail.com wrote: On Mon, Nov 30, 2009 at 1:19 PM, Mark N nipen.m...@gmail.com wrote: Is it possible to write nested queries in Solr similar to sql like query where I can take results of the first query and use one or more of its fields as an argument in the second query

Re: nested solr queries

2009-11-30 Thread Mark N
query ( select *field2 *from dbo.concept_db where field1='ABC' ) first and then only run the outer query thanks chandan On Mon, Nov 30, 2009 at 2:25 PM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: On Mon, Nov 30, 2009 at 2:02 PM, Mark N nipen.m...@gmail.com wrote: hi shalin

Re: nested solr queries

2009-11-30 Thread Mark N
thanks for your help so do you think I should execute solr queries twice ? or is there any other workarounds On Mon, Nov 30, 2009 at 3:07 PM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: On Mon, Nov 30, 2009 at 2:26 PM, Mark N nipen.m...@gmail.com wrote: field2=xyz we dont know

nested solr queries

2009-11-29 Thread Mark N
Is it possible to write nested queries in Solr similar to sql like query where I can take results of the first query and use one or more of its fields as an argument in the second query. For example: field1:XYZ AND (_query_: field3:{value of field4}) This should search for all types of XYZ