| Package | Description |
|---|---|
| org.apache.jackrabbit.mongomk | |
| org.apache.jackrabbit.mongomk.util |
| Modifier and Type | Method and Description |
|---|---|
static DocumentStore.Collection |
DocumentStore.Collection.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentStore.Collection[] |
DocumentStore.Collection.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MongoDocumentStore.create(DocumentStore.Collection collection,
List<UpdateOp> updateOps) |
boolean |
MemoryDocumentStore.create(DocumentStore.Collection collection,
List<UpdateOp> updateOps) |
boolean |
DocumentStore.create(DocumentStore.Collection collection,
List<UpdateOp> updateOps)
Try to create a list of documents.
|
Map<String,Object> |
MongoDocumentStore.createOrUpdate(DocumentStore.Collection collection,
UpdateOp update) |
Map<String,Object> |
MemoryDocumentStore.createOrUpdate(DocumentStore.Collection collection,
UpdateOp update) |
Map<String,Object> |
DocumentStore.createOrUpdate(DocumentStore.Collection collection,
UpdateOp update)
Create or update a document.
|
Map<String,Object> |
MongoDocumentStore.find(DocumentStore.Collection collection,
String key) |
Map<String,Object> |
MemoryDocumentStore.find(DocumentStore.Collection collection,
String key) |
Map<String,Object> |
DocumentStore.find(DocumentStore.Collection collection,
String key)
Get a document.
|
Map<String,Object> |
MongoDocumentStore.find(DocumentStore.Collection collection,
String key,
int maxCacheAge) |
Map<String,Object> |
MemoryDocumentStore.find(DocumentStore.Collection collection,
String key,
int maxCacheAge) |
Map<String,Object> |
DocumentStore.find(DocumentStore.Collection collection,
String key,
int maxCacheAge)
Get a document, ignoring the cache if the cached entry is older than the
specified time.
|
Map<String,Object> |
MongoDocumentStore.findAndUpdate(DocumentStore.Collection collection,
UpdateOp update) |
Map<String,Object> |
MemoryDocumentStore.findAndUpdate(DocumentStore.Collection collection,
UpdateOp update) |
Map<String,Object> |
DocumentStore.findAndUpdate(DocumentStore.Collection collection,
UpdateOp update)
Performs a conditional update (e.g.
|
boolean |
MongoDocumentStore.isCached(DocumentStore.Collection collection,
String key) |
boolean |
MemoryDocumentStore.isCached(DocumentStore.Collection collection,
String key) |
boolean |
DocumentStore.isCached(DocumentStore.Collection collection,
String key)
Check whether the given document is in the cache.
|
List<Map<String,Object>> |
MongoDocumentStore.query(DocumentStore.Collection collection,
String fromKey,
String toKey,
int limit) |
List<Map<String,Object>> |
MemoryDocumentStore.query(DocumentStore.Collection collection,
String fromKey,
String toKey,
int limit) |
List<Map<String,Object>> |
DocumentStore.query(DocumentStore.Collection collection,
String fromKey,
String toKey,
int limit)
Get a list of documents where the key is greater than a start value and
less than an end value.
|
void |
MongoDocumentStore.remove(DocumentStore.Collection collection,
String key) |
void |
MemoryDocumentStore.remove(DocumentStore.Collection collection,
String path) |
void |
DocumentStore.remove(DocumentStore.Collection collection,
String key)
Remove a document.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
LoggingDocumentStoreWrapper.create(DocumentStore.Collection collection,
List<UpdateOp> updateOps) |
Map<String,Object> |
LoggingDocumentStoreWrapper.createOrUpdate(DocumentStore.Collection collection,
UpdateOp update) |
Map<String,Object> |
LoggingDocumentStoreWrapper.find(DocumentStore.Collection collection,
String key) |
Map<String,Object> |
LoggingDocumentStoreWrapper.find(DocumentStore.Collection collection,
String key,
int maxCacheAge) |
Map<String,Object> |
LoggingDocumentStoreWrapper.findAndUpdate(DocumentStore.Collection collection,
UpdateOp update) |
boolean |
LoggingDocumentStoreWrapper.isCached(DocumentStore.Collection collection,
String key) |
List<Map<String,Object>> |
LoggingDocumentStoreWrapper.query(DocumentStore.Collection collection,
String fromKey,
String toKey,
int limit) |
void |
LoggingDocumentStoreWrapper.remove(DocumentStore.Collection collection,
String key) |
Copyright © 2012-2013 The Apache Software Foundation. All Rights Reserved.