~ubuntu-branches/ubuntu/jaunty/couchdb/jaunty

« back to all changes in this revision

Viewing changes to src/fulltext/lucene/LuceneIndexer.java

  • Committer: Bazaar Package Importer
  • Author(s): Noah Slater
  • Date: 2008-05-24 16:30:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080524163021-bpkh6s1090i37xy1
Tags: 0.7.3~svn650270-2
* Added release partitioning to database and log directories.
* Corrected postrm maintainer script to not remove logs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
    Copyright 2007, 2008 Jan Lehnardt <jan@php.net>
3
 
 
4
 
    Licensed under the Apache License, Version 2.0 (the "License");
5
 
    you may not use this file except in compliance with the License.
6
 
    You may obtain a copy of the License at
7
 
 
8
 
        http://www.apache.org/licenses/LICENSE-2.0
9
 
 
10
 
    Unless required by applicable law or agreed to in writing, software
11
 
    distributed under the License is distributed on an "AS IS" BASIS,
12
 
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 
    See the License for the specific language governing permissions and
14
 
    limitations under the License.
 
2
 
 
3
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
 
4
this file except in compliance with the License.  You may obtain a copy of the
 
5
License at
 
6
 
 
7
  http://www.apache.org/licenses/LICENSE-2.0
 
8
 
 
9
Unless required by applicable law or agreed to in writing, software distributed
 
10
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 
11
CONDITIONS OF ANY KIND, either express or implied.  See the License for the
 
12
specific language governing permissions and limitations under the License.
 
13
 
15
14
*/
16
15
 
17
16
/*
18
 
    LuceneIndexer creates a lucene index by incrementally
19
 
    fetching changes from a a CouchDB server. It is managed
20
 
    by the CouchDb daemon.
21
 
 
22
 
    I know this is Java and there should be a lot of OO
23
 
    going on, but it isn't. Sorry about that.
 
17
 
 
18
LuceneIndexer creates a lucene index by incrementally fetching changes from a a
 
19
Apache CouchDB server. It is managed by the Apache CouchDB daemon.
 
20
 
 
21
I know this is Java and there should be a lot of OO going on, but it
 
22
isn't. Sorry about that.
 
23
 
24
24
*/
25
25
 
26
26
//basics