Questions tagged [couchdb-lucene]

Enables full-text searching of CouchDB documents using Lucene.

Enables full-text searching of CouchDB documents using Lucene.

29 questions
7
votes
3 answers

Is there a project that integrates CouchDb and Solr?

I would like to be able to search a CouchDB database using Solr. Are there any projects that provide such an integration? I am also aware of CouchDB-Lucene. Is there a way to hook Solr into that? Thanks!
David V
  • 11,531
  • 5
  • 42
  • 66
6
votes
1 answer

Cloudant/Couch db pagination in search API - How to skip n number of records

I am building a typical pagination that allows the user to click on a particular page number and view the results (similar to the google search result view). I am using the cloudant search API for this. The cloudant search API provides the limit…
Sethunath K M
  • 4,702
  • 3
  • 28
  • 42
4
votes
2 answers

What characters are valid in couchdb-lucene keys?

I am able to store values in couchdb-lucene with whatever key I like, but it seems that if the key includes any chars outside of [0-9a-zA-Z_] any search fails. Does anyone know what chars are valid and/or how to properly escape special chars in…
Zack Bloom
  • 8,309
  • 2
  • 20
  • 27
2
votes
1 answer

What's wrong with temp views in CouchDB?

Background I have a CouchDB cluster running a few databases. One of these has docs with a few hundred pieces of data in a somewhat complex structure. (a 'human' for example with height, weight, eye color, hair color, clothing, gps position, and a…
Suni
  • 633
  • 8
  • 16
2
votes
1 answer

CouchDB Lucene How to URL Encode Query containing Minus (-)

I'd like to query text containing a minus (-) Sign, e.g. foo-bar with a couchdb lucene fulltext query. Following lucene rules I'd have to escape the minus, resulting in foo\-bar Last I'd have to urlencode the backslash resulting in…
Peter
  • 23
  • 2
1
vote
1 answer

{"error":"not_found","reason":"missing"} error while running couchdb-lucene on windows

I am running CouchDB and Couchdb-lucene on Windows Server 2019 version 1809. I followed all steps documented on link https://github.com/rnewson/couchdb-lucene My CouchDB local.ini file [couchdb] os_process_timeout =…
Serhat Önal
  • 63
  • 1
  • 8
1
vote
0 answers

CouchDB Lucene response errors

I am having a problem in accessing couchdb-lucene properly, and well the story goes like this: Before the problem occurred, the old developer developed a project that is running perfectly on couchdb-lucene. As time goes by the couchdb required…
1
vote
1 answer

Is there a NodeJS-based fulltext search indexer (like Lucene) that works with CouchDB?

Is there a NodeJS-based fulltext search engine (like Lucene) that works with CouchDB? I know there is a Lucene integration, but I would like to use a solution that doesn't require Java, since my deployment environment is a small embedded-device…
supershnee
  • 1,226
  • 1
  • 14
  • 13
1
vote
2 answers

CouchDB-Lucene index function doesn't work with external code

I'm using CouchDB-Lucene for retrieving data from some of my tables in my database. The thing is that I have to parse that data to know which ones I want to put in my lucene index. So, I thought that I could use a class that I already wrote to…
1
vote
1 answer

Couchdb-lucene and ad-hoc queries for the authenticated user

I'm using CouchDB to store data coming from various sources and couchdb-lucene to allow ad-hoc queries. That's important for me because I display the data in a feed and I want this feed to be filterable. CL seems perfect for that. However, I also…
Tomas Brambora
  • 1,056
  • 8
  • 17
1
vote
2 answers

Lucene : How to give more importance to certain documents ?

I am using couchdb-lucene in my web application. I have a feature where I search for users. Each user is a document with properties such as "Fullname", "Username" and "Activity". Activity is just a float value that indicates how active that user…
Eastern Monk
  • 6,395
  • 8
  • 46
  • 61
0
votes
2 answers

Using CouchDB-lucene how can I index an array of objects (not values)

Hello everyone and thanks in advance for any ideas, suggestions or answers. First, the environment: I am using CouchDB (currently developing on 1.0.2) and couchdb-lucene 0.7. Obviously, I am using couchdb-lucene ("c-l" hereafter) to provide…
Lucas
  • 478
  • 4
  • 15
0
votes
1 answer

CouchDB searching linked documents

I'm very new to couchdb and i'm hoping someone can help me with a solution to this problem. Say I have an address document that contains various keys, but importantly a singleLineAddress and a persons array: { "_id":…
redmamoth
  • 55
  • 1
  • 2
  • 8
0
votes
0 answers

Lucene 6.4 (couchdb-lucene) fuzzy search on a token with space

According to lucene documentation I'm getting proper results with the following approaches: term:foo~1 means a fuzzy search on a word foo allowing room for 1 error term:"foo bar"~1 means that foo and bar should be within 1 word of each other in…
AVK
  • 645
  • 9
  • 22
0
votes
1 answer

Python cloudant query "_id" by regex

I am new to ibm cloudant and I am using the python API for cloudant for my web application. Is there any way I can retrieve documents from my couch database hosted on IBM cloudant instance using regex on "_id"? I've read the python-cloudant…
Jor_El
  • 187
  • 8
1
2