solr-node-client icon indicating copy to clipboard operation
solr-node-client copied to clipboard

A solr client for node.js.

Results 82 solr-node-client issues
Sort by recently updated
recently updated
newest added

I want to add a parameter to return the count of documents (thinking maybe this is faster). This is exactly what is asked here: https://stackoverflow.com/questions/5050746/solr-solrj-how-can-i-determine-the-total-number-of-documents-in-an-index So in the answers we...

Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 3.99.1 to 4.5.0. Release notes Sourced from jasmine-core's releases. 4.5.0 Please see the release notes. 4.4.0 Please see the release notes. 4.3.0 Please see the release notes....

dependencies
javascript

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.0. Release notes Sourced from actions/checkout's releases. v3.1.0 What's Changed Inject GitHub host to be able to clone from another GitHub instance by @​peter-murray in...

dependencies
github_actions

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3.5.0. Release notes Sourced from actions/setup-node's releases. Add support for engines.node and Volta In scope of this release we add support for engines.node. The action...

dependencies
github_actions

I am using solr 8.11. behingd a nginx server at digitalocean on ubuntu 20.00. trying to run the code: // Use `var solr = require('solr-client')` in your code var solr...

In this specific case, there is no Solr instance available, so the connection is closed/refused. When the client attempts to call `client.ping()`, it throws an exception that I cannot catch,...

Hi there, I'm not sure if I'm invoking the `update()` function correctly or not. The `add()` function works. Interestingly though, the `add()` seems to work like a replace???? There's no...

Hello! I have been working on this issue for a few weeks with one of the maintainers @kibertoad and figured I should make a formal issue so that even if...

Just a quick suggestion on how to improve the implementation for Node 16+.

source code ```javascript function SolrError(req,res,htmlMessage){ var message = ''; if(htmlMessage){ var matches = htmlMessage.match(/([\s\S]+)/); message = decode((matches || ['', htmlMessage])[1].trim()); } HTTPError.call(this, req, res, message); Error.captureStackTrace(this,arguments.callee); this.statusCode = res.statusCode; this.message...