Hello
What simple test I can use to see if couchdb-lucene works well?
I changed Mandriva to openSuse 12.2
couchdb from 0.11 to 1.2
Couchdb works fine but couchdb-lucene by starting raise
couch:/opt/couchdb-lucene-master/target/couchdb-lucene-0.10.0-SNAPSHOT/bin
# ./run
2013-06-10 11:01:51,900 INFO [Config] Index output goes to:
/opt/couchdb-lucene-master/target/couchdb-lucene-0.10.0-SN
APSHOT/indexes
2013-06-10 11:01:51,957 INFO [Main] Accepting connections with
SelectChannelConnector@localhost:5985
2013-06-10 11:01:51,990 INFO [log] Logging to
org.slf4j.impl.Log4jLoggerAdapter(org.mortbay.log) via org.mortbay.log.S
lf4jLog
2013-06-10 11:01:53,004 INFO [log] jetty-6.1.20
2013-06-10 11:01:53,143 INFO [log] Started SelectChannelConnector@localhost
:5985
and doesn't create indexes
I'm using fulltext search in attachments see
{
"_id": "_design/search",
"_rev": "1-0b891bd5b31df6f4d8872140f9208c88",
"fulltext": {
"by_name": {
"index": " function(doc) { var result
= new Document(); for(var a in doc._attachments) {
result.attachment('default',a); } return result;}"
}
}
}
I tried couchdb-lucene 0.6 as well but with the same results.
amy idea please?
Fanda