forked from blevesearch/bleve
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
major refactor of kvstore/index internals, see below
In the index/store package introduce KVReader creates snapshot all read operations consistent from this snapshot must close to release introduce KVWriter only one writer active access to all operations allows for consisten read-modify-write must close to release introduce AssociativeMerge operation on batch allows efficient read-modify-write for associative operations used to consolidate updates to the term summary rows saves 1 set and 1 get op per shared instance of term in field In the index package introduced an IndexReader exposes a consisten snapshot of the index for searching At top level All searches now operate on a consisten snapshot of the index
- Loading branch information
Showing
62 changed files
with
1,533 additions
and
575 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright (c) 2014 Couchbase, Inc. | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
// except in compliance with the License. You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software distributed under the | ||
// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
// either express or implied. See the License for the specific language governing permissions | ||
// and limitations under the License. | ||
|
||
package boltdb | ||
|
||
import ( | ||
"github.com/blevesearch/bleve/index/store" | ||
"github.com/boltdb/bolt" | ||
) | ||
|
||
type Reader struct { | ||
store *Store | ||
tx *bolt.Tx | ||
} | ||
|
||
func newReader(store *Store) *Reader { | ||
tx, _ := store.db.Begin(false) | ||
return &Reader{ | ||
store: store, | ||
tx: tx, | ||
} | ||
} | ||
|
||
func (r *Reader) Get(key []byte) ([]byte, error) { | ||
rv := r.tx.Bucket([]byte(r.store.bucket)).Get(key) | ||
return rv, nil | ||
} | ||
|
||
func (r *Reader) Iterator(key []byte) store.KVIterator { | ||
rv := newIteratorExistingTx(r.store, r.tx) | ||
rv.Seek(key) | ||
return rv | ||
} | ||
|
||
func (r *Reader) Close() error { | ||
return r.tx.Rollback() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright (c) 2014 Couchbase, Inc. | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
// except in compliance with the License. You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software distributed under the | ||
// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
// either express or implied. See the License for the specific language governing permissions | ||
// and limitations under the License. | ||
|
||
package boltdb | ||
|
||
import ( | ||
"github.com/blevesearch/bleve/index/store" | ||
) | ||
|
||
type Writer struct { | ||
store *Store | ||
} | ||
|
||
func newWriter(store *Store) *Writer { | ||
store.writer.Lock() | ||
return &Writer{ | ||
store: store, | ||
} | ||
} | ||
|
||
func (w *Writer) Set(key, val []byte) error { | ||
return w.store.setlocked(key, val) | ||
} | ||
|
||
func (w *Writer) Delete(key []byte) error { | ||
return w.store.deletelocked(key) | ||
} | ||
|
||
func (w *Writer) NewBatch() store.KVBatch { | ||
return newBatchAlreadyLocked(w.store) | ||
} | ||
|
||
func (w *Writer) Close() error { | ||
w.store.writer.Unlock() | ||
return nil | ||
} | ||
|
||
// these two methods can safely read using the regular | ||
// methods without a read transaction, because we know | ||
// that no one else is writing but us | ||
func (w *Writer) Get(key []byte) ([]byte, error) { | ||
return w.store.get(key) | ||
} | ||
|
||
func (w *Writer) Iterator(key []byte) store.KVIterator { | ||
return w.store.iterator(key) | ||
} |
Oops, something went wrong.