srikanthv123 / solrnet

Automatically exported from code.google.com/p/solrnet
0 stars 0 forks source link

Solr 1.4 add parameters #85

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
http://wiki.apache.org/solr/UpdateXmlMessages#Optional_attributes_for_.22add.
22

Original issue reported on code.google.com by mauricio...@gmail.com on 25 Nov 2009 at 8:39

GoogleCodeExporter commented 8 years ago
Aren't all these options supported now ?

Original comment by emar...@gmail.com on 17 Mar 2010 at 8:03

GoogleCodeExporter commented 8 years ago
Nope, none of them is implemented.

Original comment by mauricio...@gmail.com on 17 Mar 2010 at 12:23

GoogleCodeExporter commented 8 years ago
The commitWithin add option is really useful for real-time like applications. 
You then never need to worry about when to call commit, as solr will handle it 
for you. Example:

This command will make sure the documents are added within 10 seconds max:
<add commitWithin="10000">
   <doc>....</doc>
</add>

Original comment by cominv...@gmail.com on 16 Sep 2010 at 2:56

GoogleCodeExporter commented 8 years ago
@cominvent: you could also use autoCommit with a maxTime: 
http://wiki.apache.org/solr/SolrConfigXml#Update_Handler_Section

Original comment by mauricio...@gmail.com on 16 Sep 2010 at 3:19

GoogleCodeExporter commented 8 years ago
@mauricioscheffer: I know that and was not asking a question really. I was 
promoting why it would be useful to implement this issue. Normally commitWithin 
is way to prefer over autoCommit, especially since you have the flexibility NOT 
to commit for e.g. batch loading.

Original comment by cominv...@gmail.com on 17 Sep 2010 at 6:57

GoogleCodeExporter commented 8 years ago
http://groups.google.com/group/solrnet/browse_thread/thread/dfc6c0618672fc82

Original comment by mauricio...@gmail.com on 4 Jan 2011 at 9:17

GoogleCodeExporter commented 8 years ago
Implemented in richtea/SolrNet

Original comment by rich.t...@gmail.com on 4 Jan 2011 at 10:56

GoogleCodeExporter commented 8 years ago
Merged in 3fe68bff93b89202a01ee5b65e63d267d986d39e

Original comment by mauricio...@gmail.com on 6 Jan 2011 at 3:00