Skip to content

Commit 85ac54c

Browse files
committed
FIX: Update README to reflech recent changes made on the library.
1 parent 323f733 commit 85ac54c

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@ npm install solr-client
1111
```
1212

1313
##Features
14-
- Commands supported: search(select), index, delete, update, commit, rollback, optimize, ping
14+
15+
- Commands supported: search(select), add, delete, update, commit, rollback, optimize, ping, real-time get, prepare commit, soft commit, arbitrary search handler (i.e: mlt, luke ...)
1516
- Lucene query / DisMax query
1617
- Grouping / Field Collapsing. (Apache Solr version must be >= 3.3)
1718
- Convenients methods for querying with Facet, MoreLikeThis
1819
- HTTP Basic Access Authentication
20+
- Over HTTPS as well
21+
- Use json-bigint to parse and stringify correctly *_l fields of Solr
1922

2023
##Documentation
2124
See the website at http://lbdremy.github.com/solr-node-client/.
@@ -34,7 +37,7 @@ client.add({ id : 12, title_t : 'Hello' },function(err,obj){
3437
if(err){
3538
console.log(err);
3639
}else{
37-
console.log('Solr response:' + obj);
40+
console.log('Solr response:', obj);
3841
}
3942
});
4043
```
@@ -57,7 +60,6 @@ client.add({ id : 12, title_t : 'Hello' },function(err,obj){
5760
```
5861
npm test
5962
```
60-
### v0.3.x
6163

6264
Tests are executed against a running SOLR instance, so you might want to:
6365
- install the schema.xml and solrconfig.xml expected by the tests. You find these in test/materials
@@ -85,6 +87,9 @@ npm run-script report
8587
This command will generate a file named `coverage.html`, use your browser to visualize it.
8688

8789
##Licence
90+
8891
(The MIT License)
92+
8993
Copyright 2011-2012 HipSnip Limited
94+
9095
Copyright 2013-2014 Rémy Loubradou

0 commit comments

Comments
 (0)