Re: Tree Component for much Categories.

2010-04-15 Thread stockii

can solr store a recursive search ? 
-- 
View this message in context: 
http://n3.nabble.com/Tree-Component-for-much-Categories-tp718910p720590.html
Sent from the Solr - User mailing list archive at Nabble.com.


Supporting multiple index / query analyzer stacks

2010-04-15 Thread Villemos, Gert
Having developed a system based on SOLr, we are now optimizing the
ranking of the search results to give the user a better search
experience.

 

We would like to create multiple index / query analyzer stacks in the
SOLr configuration to test how this affects the results. We would index
the same text field with all stacks and then at runtime allow the user
to select the stack to be used to execute the search. He can thus
perform the same search in for example 5 ways, and tell us which search
stack gave him the best set of results.

 

How can we do this?

 

We were thinking along the lines:

*   In the schema.xml define the different index / query stacks for
different field types ("text_stack1", "text_stack2", "text_stack3",...).
*   Create a field of each type ("", "", ...).
*   Create a copy field definition, copying the same text into the
five different fields ("",
"", ...).

 

Is this the smart way of doing it? Is there a better way?

 

Thanks,

Gert.



Please help Logica to respect the environment by not printing this email  / 
Pour contribuer comme Logica au respect de l'environnement, merci de ne pas 
imprimer ce mail /  Bitte drucken Sie diese Nachricht nicht aus und helfen Sie 
so Logica dabei, die Umwelt zu schützen. /  Por favor ajude a Logica a 
respeitar o ambiente nao imprimindo este correio electronico.



This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be copied, 
disclosed to, retained or used by, any other party. If you are not an intended 
recipient then please promptly delete this e-mail and any attachment and all 
copies and inform the sender. Thank you.



Re: Displaying fieldValueCache stats in Solr 1.4 admin/stats page

2010-04-15 Thread SandeepTagore


>> If you've never specified multiValued/tokenized fields for faceting,
>> fieldValueCache  won't be used.

>> Koji


Yes Koji. You are right. I just fired a faceted query and fieldValueCache is
showing some stats. Thanks a lot.

Sandeep
-- 
View this message in context: 
http://n3.nabble.com/Displaying-fieldValueCache-stats-in-Solr-1-4-admin-stats-page-tp716093p720740.html
Sent from the Solr - User mailing list archive at Nabble.com.


Reg: Indexing Date Fields

2010-04-15 Thread Venkata Sai Krishna Vepakomma
Hi,

1) How do I query for Data between 2 date ranges.  I have specified the 
following field definition in Schema.xml.

   

I have long values for Date fields.  When I query with long values, I am always 
getting all the results.

2) For indexing to be working efficiently and for querying between Date ranges, 
Is it OK to use long values or Do I need to use 'Date' type with specific 
formats.

Please Let me know your thoughts.

Thanks & Regards
Venkat


Re: dismax and date boosts

2010-04-15 Thread Shawn Heisey
It's stored in the database as a bigint, seconds since epoch, not a 
date.  I need to store the integer value in Solr for the application to 
consume (done as a tlong), but I want to create a second copy that's 
tdate.  That's the part I don't know how to do.  If I just do a 
copyField in the schema, will that do it, or will I need to write some 
magic somewhere?


Shawn


On 4/14/2010 9:46 PM, Lance Norskog wrote:

Wait- it's in a database? That's much simpler.

The select should supply the date as an SQL Date or Timestamp type.
The DIH will get this directly and store it as a Solr tdate. You
should not have to do any arithmetic or formatting of date strings.

This may need a few layers of SQL functions.

On 4/14/10, Shawn Heisey  wrote:
   

On 4/14/2010 8:12 AM, Shawn Heisey wrote:
 

On 4/12/2010 9:29 PM, Lance Norskog wrote:
   

During indexing: the basic Solr XmlUpdateHandler does not have a
facility for this. In the DataImportHandler you can add Javascript
that takes your 'seconds since epoch', adds the delta between your
epoch and 1/1/1970, and multiplies by 1000.
 

I had hoped there was a way to tell schema.xml to do the math, but
this sounds like there isn't.  If you could point me at some examples
of how to put javascript into data-config.xml, then I could probably
work out how to do the javascript that I would need.  I might be able
to alter my SQL query in the DIH config to multiply the value by 1000,
but that puts all the load on the SQL server instead of utilizing the
multiple CPUs involved in my shards.  I'm pretty sure that the epoch
on my dates is also 1970/01/01.

What I'd truly like is a way to convert it directly to tdate, so all
of Solr's date capabilities become available.  Is that nontrivial, or
is that perhaps what you've been already describing?

Thanks for all the help you've given so far.  I've made a lot of
progress.

   


 


   




Re: Reg: Indexing Date Fields

2010-04-15 Thread Jean-Sebastien Vachon
I guess you can simply use a range query such as:

fq=createdDate:[ date1 TO date2 ]


On 2010-04-15, at 7:30 AM, Venkata Sai Krishna Vepakomma wrote:

> Hi,
> 
> 1) How do I query for Data between 2 date ranges.  I have specified the 
> following field definition in Schema.xml.
> 
>   
> 
> I have long values for Date fields.  When I query with long values, I am 
> always getting all the results.
> 
> 2) For indexing to be working efficiently and for querying between Date 
> ranges, Is it OK to use long values or Do I need to use 'Date' type with 
> specific formats.
> 
> Please Let me know your thoughts.
> 
> Thanks & Regards
> Venkat



RE: Reg: Indexing Date Fields

2010-04-15 Thread Ankit Bhatnagar
Hi Venkat,
It depends on your use-  case, but if want to query for time(with whatever 
granularity) then 'int' is good.

However if you just wan to query for date range then [date1 TO date2] should be 
fine.

Ankit

-Original Message-
From: Jean-Sebastien Vachon [mailto:js.vac...@videotron.ca] 
Sent: Thursday, April 15, 2010 9:09 AM
To: solr-user@lucene.apache.org
Subject: Re: Reg: Indexing Date Fields

I guess you can simply use a range query such as:

fq=createdDate:[ date1 TO date2 ]


On 2010-04-15, at 7:30 AM, Venkata Sai Krishna Vepakomma wrote:

> Hi,
> 
> 1) How do I query for Data between 2 date ranges.  I have specified the 
> following field definition in Schema.xml.
> 
>   
> 
> I have long values for Date fields.  When I query with long values, I am 
> always getting all the results.
> 
> 2) For indexing to be working efficiently and for querying between Date 
> ranges, Is it OK to use long values or Do I need to use 'Date' type with 
> specific formats.
> 
> Please Let me know your thoughts.
> 
> Thanks & Regards
> Venkat



Re: Ignoring dataDir parameter in core creating process

2010-04-15 Thread Sergei Goorov
This issue has been resolved by removing dataDir property from solrconfig.xml



On Wed, Apr 14, 2010 at 10:32 AM, Sergei Goorov  wrote:
>
> When solr core is being created (in my case from solrj lib) the parameter 
> dataDir is ignored, the value from solrconfig.xml is used instead it.
> Under debugger I find strange place in org.apache.solr.core.CoreContainer 
> (solr version 1.4):
>
> public SolrCore create(CoreDescriptor dcore)  throws 
> ParserConfigurationException, IOException, SAXException {
>     ...
>     // my comment: here second parameter (which is null) is dataDir but dcore 
> has true dataDir value
>     SolrCore core = new SolrCore(dcore.getName(), null, config, schema, 
> dcore);
>     return core;
> }
>
> why dataDir is null in this SolrCore construction?
> Or there is another place where dataDir should be properly set, this is in 
> SolrCore constructor:
>
> public SolrCore(String name, String dataDir, SolrConfig config, IndexSchema 
> schema, CoreDescriptor cd) {
>     ...
>     if (dataDir == null){
>    dataDir =  config.getDataDir();
>    if(dataDir == null) dataDir = cd.getDataDir();
>     }
>
>     dataDir = SolrResourceLoader.normalizeDir(dataDir);
>     ...
> }
>
> My opinion is when core is creating dataDir should be firstly set from 
> CoreDescriptor parameter and only if its dataDir is null then retrieve 
> dataDir from global solr config file.
> Is this bug or I insufficiently understand core creating behavior?
>
> Many thanks,
> Sergei


Re: [ANN] Zoie Solr Plugin - Zoie Solr Plugin enables real-time update functionality for Apache Solr 1.4+

2010-04-15 Thread John Wang
Sorry, have completely missed this thread until someone pointed out to me
just now.

Some clarifications:

commit=true is for the plugin only. I added it to make it consistent with
Solr's behavior.

Stand-alone Zoie does not require this, it is in more of an autocommit mode
since it assumes a constant and busy stream of indexing events.

So I think what we will do is add an autocommit parameter to the
ZoieUpdateHandler and default it to true. With this, you don't need to have
commit=true to see the new docs.

-John

On Wed, Apr 14, 2010 at 5:25 PM, qaz  wrote:

>
> do you mean that the plugin for solr doesn't have all the functionalities
> of
> the standalone zoie or do you mean zoie just simply cannot handle large
> indexes? by really really small, what exactly are we talking about here?
> are
> there any better ways for NRT? maybe in solr 1.5?
>
> thanks
> --
> View this message in context:
> http://n3.nabble.com/ANN-Zoie-Solr-Plugin-Zoie-Solr-Plugin-enables-real-time-update-functionality-for-Apache-Solr-1-4-tp506099p719893.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>


Turn off request logging for some handlers?

2010-04-15 Thread Shawn Heisey
Is it possible to turn off request logging for some handlers?  
Specifically, I'd like to stop logging requests to /admin/ping and 
/replication, which get hit very often.


I looked around for an answer but wasn't able to find anything.

Thanks,
Shawn



Re: Turn off request logging for some handlers?

2010-04-15 Thread Michael Kuhlmann
Am 15.04.2010 17:45, schrieb Shawn Heisey:
> Is it possible to turn off request logging for some handlers? 
> Specifically, I'd like to stop logging requests to /admin/ping and
> /replication, which get hit very often.
> 
Hi,

you can set logging for nearly every single task here:

http://:/solr/admin/logging.jsp

-Michael


Re: Turn off request logging for some handlers?

2010-04-15 Thread Shawn Heisey

On 4/15/2010 9:54 AM, Michael Kuhlmann wrote:

you can set logging for nearly every single task here:
http://:/solr/admin/logging.jsp

   
I'm pretty sure that refers to the output that normally goes to stderr, 
I'm talking about the logs that go to files like 
2010_04_15.request.log.  I've just remembered this logging is actually 
done by Jetty, which makes this not the right forum to ask the question, 
but perhaps someone here might know.




bug using distributed search, highlighting and q.alt

2010-04-15 Thread Marc Sturlese
I have noticed when using q.alt even if hl=true highlights are not returned.
When using distributed search, q.alt and hl, HighlightComponent.java
finishStage expects the highlighting NamedList of each shard (if hl=true)
but it will never be returned. It will end up with a NullPointerExcepion.
I have temporally solved it checking that highlight NamedList is always
returned for each shard. If it's not the case, highlights are not added to
the response:

  @Override
  public void finishStage(ResponseBuilder rb) {
   * boolean hasHighlighting = true ;*
if (rb.doHighlights && rb.stage == ResponseBuilder.STAGE_GET_FIELDS) {

  Map.Entry[] arr = new
NamedList.NamedListEntry[rb.resultIds.size()];

  // TODO: make a generic routine to do automatic merging of id keyed
data
  for (ShardRequest sreq : rb.finished) {
if ((sreq.purpose & ShardRequest.PURPOSE_GET_HIGHLIGHTS) == 0)
continue;
for (ShardResponse srsp : sreq.responses) {
  NamedList hl =
(NamedList)srsp.getSolrResponse().getResponse().get("highlighting");
 * if(hl != null) {*
for (int i=0; i(id,
hl.getVal(i));
}
*  } else {
hasHighlighting = false;
  }*
}
  }

  // remove nulls in case not all docs were able to be retrieved
*  if(hasHighlighting) {*
rb.rsp.add("highlighting", removeNulls(new SimpleOrderedMap(arr)));
*  }*
}
  }


bug using distributed search, highlighting and q.alt

2010-04-15 Thread Marc Sturlese

I have noticed when using q.alt even if hl=true highlights are not returned.
When using distributed search, q.alt and hl, HighlightComponent.java
finishStage expects the highlighting NamedList of each shard (if hl=true)
but it will never be returned. It will end up with a NullPointerExcepion.
I have temporally solved it checking that highlight NamedList is always
returned for each shard. If it's not the case, highlights are not added to
the response:

  @Override
  public void finishStage(ResponseBuilder rb) {
boolean hasHighlighting = true ;
if (rb.doHighlights && rb.stage == ResponseBuilder.STAGE_GET_FIELDS) {

  Map.Entry[] arr = new
NamedList.NamedListEntry[rb.resultIds.size()];

  // TODO: make a generic routine to do automatic merging of id keyed
data
  for (ShardRequest sreq : rb.finished) {
if ((sreq.purpose & ShardRequest.PURPOSE_GET_HIGHLIGHTS) == 0)
continue;
for (ShardResponse srsp : sreq.responses) {
  NamedList hl =
(NamedList)srsp.getSolrResponse().getResponse().get("highlighting");
  if(hl != null) {
for (int i=0; ihttp://n3.nabble.com/bug-using-distributed-search-highlighting-and-q-alt-tp721797p721797.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: weight and ranking

2010-04-15 Thread hkmortensen


suram wrote:
> 
> Hi, 
>without dismax,how can i create the more complex query for get a
> higher ranking for particular field
> 
> 

Hi, you can do that with the "^", if I understand you correct. It is called
boosting in solr. For example:

a_member_name:billy^5 OR oswald

This makes a hit with billy higher ranked than a hit with oswald. If the
value is less than 1 (one) is reduces the boosting:

a_member_name:billy OR oswald^0.2

This example reduces the ranking on a hit with oswald (and the two examples
will probably be identical in the result, I am not quite sure of that
though, but the boosting should work relative.

If you want a hit on "a_member_name" to always be boosted, just always add
the "^xx".

 
-- 
View this message in context: 
http://n3.nabble.com/weight-and-ranking-tp720944p78.html
Sent from the Solr - User mailing list archive at Nabble.com.


XSD for Solrv1.4

2010-04-15 Thread Stefan Maric
Are there any plans to release an xsd (& preferably a set of JAXB classes)
so we can process the xml returned for a search request



Re: XSD for Solrv1.4

2010-04-15 Thread hkmortensen


Smaric-2 wrote:
> 
> Are there any plans to release an xsd (& preferably a set of JAXB classes)
> so we can process the xml returned for a search request
> 
> 
> 

I do not know. I would recommend to use solrj, the java client. I always do
that myself, do you have a reason not to do that?

-- 
View this message in context: 
http://n3.nabble.com/weight-and-ranking-tp720944p722255.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: SOLR Exact match problem - Punctuations, double quotes etc.

2010-04-15 Thread hkmortensen

Does the text being searched contain the dot at that place (after doctor)?  



Hid-Mubarmij wrote:
> 
> Hi,
> I am searching on SOLR and want to search exact match keywords.
> Punctualtion(Dot, Period), comma, double quotes or any other single
> charecter is being problematic when searching in SOLR for exact match
> keywords.
> For example a keyword: 
> 
> if i use 
> 
> "he is my doctor." 
> 
> then SOLR is returning the exact record which is correct bu t if I ommit
> the Punctualtion(Dot, Period)  like
> 
> "he is my doctor" 
> 
> SOLR returns Zero results. same case with comma, double quotes etc.
> 
> Anybody have any idea about this.
> 
> Many thanks in advance.
> 

-- 
View this message in context: 
http://n3.nabble.com/SOLR-Exact-match-problem-Punctuations-double-quotes-etc-tp720807p722298.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: XSD for Solrv1.4

2010-04-15 Thread Mattmann, Chris A (388J)
Hi Stefan,

I'm not sure about releasing one for 1.4, but I was making some progress on 
SOLR-17 [1] (and see the linked issues from there) on pushing this forward. It 
dropped off my radar for a while, but I'd be happy to pick it up back up.

Let me see what I can do.

Thanks!

Cheers,
Chris

[1] http://issues.apache.org/jira/browse/SOLR-17

On 4/15/10 1:19 PM, "Stefan Maric"  wrote:

Are there any plans to release an xsd (& preferably a set of JAXB classes)
so we can process the xml returned for a search request




++
Chris Mattmann, Ph.D.
Senior Computer Scientist
NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
Office: 171-266B, Mailstop: 171-246
Email: chris.mattm...@jpl.nasa.gov
WWW:   http://sunset.usc.edu/~mattmann/
++
Adjunct Assistant Professor, Computer Science Department
University of Southern California, Los Angeles, CA 90089 USA
++



Re: SOLR Exact match problem - Punctuations, double quotes etc.

2010-04-15 Thread Erick Erickson
What analyzer is your field using at index and query time?
See:
http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters

Some analyzers
strip punctuation, some don't. Some lowercase,
some don't. You can chain filters together to do most anything
you want...

HTH
Erick

On Thu, Apr 15, 2010 at 4:45 PM, hkmortensen  wrote:

>
> Does the text being searched contain the dot at that place (after doctor)?
>
>
>
> Hid-Mubarmij wrote:
> >
> > Hi,
> > I am searching on SOLR and want to search exact match keywords.
> > Punctualtion(Dot, Period), comma, double quotes or any other single
> > charecter is being problematic when searching in SOLR for exact match
> > keywords.
> > For example a keyword:
> >
> > if i use
> >
> > "he is my doctor."
> >
> > then SOLR is returning the exact record which is correct bu t if I ommit
> > the Punctualtion(Dot, Period)  like
> >
> > "he is my doctor"
> >
> > SOLR returns Zero results. same case with comma, double quotes etc.
> >
> > Anybody have any idea about this.
> >
> > Many thanks in advance.
> >
>
> --
> View this message in context:
> http://n3.nabble.com/SOLR-Exact-match-problem-Punctuations-double-quotes-etc-tp720807p722298.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>


Re: DIH questions

2010-04-15 Thread Blargy

Is there anyway that a sub-entity can delete/rewrite fields from the
document? Is there anyway sub-entities can get access to what the documents
current value for a current field?
-- 
View this message in context: 
http://n3.nabble.com/DIH-questions-tp719892p722651.html
Sent from the Solr - User mailing list archive at Nabble.com.


RE: DIH questions

2010-04-15 Thread caman

I had similar requirement and was not able to figure out at that time. Was
able to use some of the SQL Magic to create concatenated string for
sub-entities  and then process them in transformer which may or may not work
for your use-case. Just a thought. 

Mention specifics here please and I can see if anything can be done

 

Thanks

James

http://www.click2money.com

 

 

From: Blargy [via Lucene]
[mailto:ml-node+722651-1893075853-124...@n3.nabble.com] 
Sent: Thursday, April 15, 2010 4:28 PM
To: caman
Subject: Re: DIH questions

 

Is there anyway that a sub-entity can delete/rewrite fields from the
document? Is there anyway sub-entities can get access to what the documents
current value for a current field? 

  _  

View message @ http://n3.nabble.com/DIH-questions-tp719892p722651.html 
To start a new topic under Solr - User, email
ml-node+472068-464289649-124...@n3.nabble.com 
To unsubscribe from Solr - User, click
< (link removed) 
yc3R1ZmZAZ21haWwuY29tfDQ3MjA2OHwtOTM0OTI1NzEx>  here. 

 


-- 
View this message in context: 
http://n3.nabble.com/DIH-questions-tp719892p722676.html
Sent from the Solr - User mailing list archive at Nabble.com.


RE: DIH questions

2010-04-15 Thread Blargy

Can you please explain how you solved your problem. Im going crazy over here!
:)
-- 
View this message in context: 
http://n3.nabble.com/DIH-questions-tp719892p722710.html
Sent from the Solr - User mailing list archive at Nabble.com.


CopyField

2010-04-15 Thread Blargy

Is there anyway to instruct copy field overwrite an existing field, or only
accept the first one?

  
  

Basically I'm want to copy source1 to dest (if it exists). If source1 doesnt
exist then copy source2 into dest.

Is this possible?
-- 
View this message in context: 
http://n3.nabble.com/CopyField-tp722785p722785.html
Sent from the Solr - User mailing list archive at Nabble.com.


RE: CopyField

2010-04-15 Thread caman

As far as I know, No.

But why don't you keep another column 'source_final' and you populate it
with value from sourc1 or sourc2 depending on what has value(Look at
transformer, may be script transformer) . then in schema.xml

  

 

Thanks

James

http://www.click2money.com

 

 

From: Blargy [via Lucene]
[mailto:ml-node+722785-1511121936-124...@n3.nabble.com] 
Sent: Thursday, April 15, 2010 5:54 PM
To: caman
Subject: CopyField

 

Is there anyway to instruct copy field overwrite an existing field, or only
accept the first one? 

   
   

Basically I'm want to copy source1 to dest (if it exists). If source1 doesnt
exist then copy source2 into dest. 

Is this possible? 

  _  

View message @ http://n3.nabble.com/CopyField-tp722785p722785.html 
To start a new topic under Solr - User, email
ml-node+472068-464289649-124...@n3.nabble.com 
To unsubscribe from Solr - User, click
< (link removed) 
yc3R1ZmZAZ21haWwuY29tfDQ3MjA2OHwtOTM0OTI1NzEx>  here. 

 


-- 
View this message in context: 
http://n3.nabble.com/CopyField-tp722785p722800.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: CopyField

2010-04-15 Thread Koji Sekiguchi

Blargy wrote:

Is there anyway to instruct copy field overwrite an existing field, or only
accept the first one?

  
  

Basically I'm want to copy source1 to dest (if it exists). If source1 doesnt
exist then copy source2 into dest.

Is this possible?
  

You cannot do it out-of-the-box. But you can
implement custome update processor to do it:

http://wiki.apache.org/solr/UpdateRequestProcessor

Koji

--
http://www.rondhuit.com/en/



DIH dataimport.properties with

2010-04-15 Thread Michael Tibben

Hi,

I am using the DIH to import data from a mysql slave. However, the slave 
sometimes runs behind the master. The delay is variable, most of the 
time it is in sync, but sometimes can run behind by a few minutes.


This is a problem, because DIH uses dataimport.properties to determine 
the last_index_time for delta updates. This last_index_time does not 
correspond to the position of the slave, and so documents are being missed.


What I need to be able to do is tell DIH what the last_index_time should 
be. Or alternatively, be able to specify another property in 
dataimport.properties, perhaps called datasource_version or similar.


Is this possible?


I have thought of a sneaky way to hack around the issue. Just before the 
delta update is run, I will switch the system time to the mysql slave's 
replication time. The system is used for nothing but solr master, so I 
think this should work OK. Any thoughts?


Regards,

Michael


run in background

2010-04-15 Thread Dan Yamins
Hi,

Normally I've been starting solr like so:

   java -jar start.jar

However, I need to have this process executed over a remove ssh connection
that cannot be blocking.   I'd therefore like to execute the process "in the
background", , somehow in  a forked process, so that the command returns
while having set solr to run in the child process.  Is there a simple way to
do this?

Thanks,
dan


Re: run in background

2010-04-15 Thread Walter Underwood
nohup my_command &

That will run "my_command" in the background and "nohup" ignores the SIGHUP 
signal sent when you log out. Or, originally, "hang up" the modem.

wunder

On Apr 15, 2010, at 8:27 PM, Dan Yamins wrote:

> Hi,
> 
> Normally I've been starting solr like so:
> 
>   java -jar start.jar
> 
> However, I need to have this process executed over a remove ssh connection
> that cannot be blocking.   I'd therefore like to execute the process "in the
> background", , somehow in  a forked process, so that the command returns
> while having set solr to run in the child process.  Is there a simple way to
> do this?
> 
> Thanks,
> dan







RE: CopyField

2010-04-15 Thread Blargy

Thanks for the suggestion but I think I explained it wrong. 

I have 3 values

valueA
valueB
valueC

I would like to only add the last one if possible. IE if i have values A,B,C
then add valueC. If I have A,B, then B...


-- 
View this message in context: 
http://n3.nabble.com/CopyField-tp722785p723057.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: CopyField

2010-04-15 Thread Blargy

Thanks Koji... this is more of what I wanted. 

Is there any class or processor like this for the DataImportHanlder that can
accomplish this?

Thanks alot!
-- 
View this message in context: 
http://n3.nabble.com/CopyField-tp722785p723060.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: SOLR Exact match problem - Punctuations, double quotes etc.

2010-04-15 Thread Hid-Mubarmij

Hi hkmortensen,
Thanks, Yes the text contain the dot at that place (after doctor).
-- 
View this message in context: 
http://n3.nabble.com/SOLR-Exact-match-problem-Punctuations-double-quotes-etc-tp720807p723087.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: SOLR Exact match problem - Punctuations, double quotes etc.

2010-04-15 Thread Hid-Mubarmij

Hi Erick,

Thanks, I am using solr.WhitespaceTokenizerFactory and
solr.LowerCaseFilterFactory for both index and query time.
Following is the complete field i am using schema.xml:
==


  















  


==


-- 
View this message in context: 
http://n3.nabble.com/SOLR-Exact-match-problem-Punctuations-double-quotes-etc-tp720807p723099.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: CopyField

2010-04-15 Thread Blargy

Ok stupid question i know (its been awhile since I played around with java).

Once I have the jar file compiled and I include it in my home/lib directory
how do I go about using it? Will this override the existing behavior or will
this be a new command?



or


-- 
View this message in context: 
http://n3.nabble.com/CopyField-tp722785p723145.html
Sent from the Solr - User mailing list archive at Nabble.com.