|
ModeShape Distribution 3.2.0.Final | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use NodeCache | |
---|---|
org.modeshape.jcr | |
org.modeshape.jcr.cache | |
org.modeshape.jcr.cache.document | |
org.modeshape.jcr.query | The Query API provides a mechanism for building and executing queries. |
org.modeshape.jcr.query.lucene | The core query engine, which currently uses Lucene for indexing and raw queries, and the Hibernate Search engine (which does not depend on or use Hibernate Core or JPA) for updating and querying the Lucene indexes. |
Uses of NodeCache in org.modeshape.jcr |
---|
Classes in org.modeshape.jcr that implement NodeCache | |
---|---|
protected class |
JcrSession.SystemSessionCache
|
Methods in org.modeshape.jcr that return NodeCache | |
---|---|
protected NodeCache |
JcrRepository.workspaceCache(String workspaceName)
|
Methods in org.modeshape.jcr with parameters of type NodeCache | |
---|---|
void |
JcrSession.JcrPreSave.processAfterLocking(MutableCachedNode modifiedNode,
SessionCache.SaveContext context,
NodeCache persistentNodeCache)
|
Uses of NodeCache in org.modeshape.jcr.cache |
---|
Subinterfaces of NodeCache in org.modeshape.jcr.cache | |
---|---|
interface |
SessionCache
|
Classes in org.modeshape.jcr.cache that implement NodeCache | |
---|---|
class |
SessionCacheWrapper
A SessionCache implementation that wraps another and is suitable to extend and overwrite only those methods that are
required. |
Fields in org.modeshape.jcr.cache declared as NodeCache | |
---|---|
protected NodeCache |
AllPathsCache.cache
|
protected NodeCache |
AllPathsCache.removedCache
|
Methods in org.modeshape.jcr.cache that return NodeCache | |
---|---|
NodeCache |
PathCache.getCache()
|
NodeCache |
AllPathsCache.getCache()
|
NodeCache |
SessionCacheWrapper.getWorkspace()
|
NodeCache |
SessionCache.getWorkspace()
Get the cache the reflects the workspace content, without any of the transient, unsaved changes of this session. |
NodeCache |
NodeCache.unwrap()
Unwrap this instance. |
Methods in org.modeshape.jcr.cache with parameters of type NodeCache | |
---|---|
protected Set<NodeKey> |
AllPathsCache.getAdditionalParentKeys(CachedNode node,
NodeCache cache)
|
Set<NodeKey> |
CachedNode.getAdditionalParentKeys(NodeCache cache)
Get the keys for all of the nodes (other than the primary parent ) under which this node
appears. |
ChildReferences |
CachedNode.getChildReferences(NodeCache cache)
Get the set of child references for this node. |
Set<Name> |
CachedNode.getMixinTypes(NodeCache cache)
Get the set of mixin types for this node. |
Name |
CachedNode.getName(NodeCache cache)
Get the name for this node, without any same-name-sibiling (SNS) index. |
NodeKey |
CachedNode.getParentKey(NodeCache cache)
Get the node key for this node's primary parent within this workspace. |
NodeKey |
CachedNode.getParentKeyInAnyWorkspace(NodeCache cache)
Get the node key for this node's primary parent in any workspace. |
Path |
CachedNode.getPath(NodeCache cache)
Get the path to this node. |
PathCache |
RepositoryPathCache.getPathCache(String workspaceName,
NodeCache nodeCacheForWorkspace)
|
Name |
CachedNode.getPrimaryType(NodeCache cache)
Get the primary type for this node. |
Iterator<Property> |
CachedNode.getProperties(Collection<?> namePatterns,
NodeCache cache)
Get an iterator over all of the properties of this node that have names matching at least one of the supplied patterns. |
Iterator<Property> |
CachedNode.getProperties(NodeCache cache)
Get an iterator over all of the node's properties. |
Property |
CachedNode.getProperty(Name name,
NodeCache cache)
Get the property with the given name. |
int |
CachedNode.getPropertyCount(NodeCache cache)
Determine the number of properties that this node contains. |
Set<NodeKey> |
CachedNode.getReferrers(NodeCache cache,
CachedNode.ReferenceType type)
Get the keys of the nodes that have JCR REFERENCE and/or WEAK_REFERENCE properties pointing to this node. |
Path.Segment |
CachedNode.getSegment(NodeCache cache)
Get the path segment for this node. |
boolean |
CachedNode.hasProperties(NodeCache cache)
Determine if the node contains one or more properties. |
boolean |
CachedNode.hasProperty(Name name,
NodeCache cache)
Determine if the node contains a property with the specified name. |
boolean |
CachedNode.isAtOrBelow(NodeCache cache,
Path path)
Determine if this node is effectively at or below the supplied path. |
boolean |
CachedNode.isQueryable(NodeCache cache)
Determine if this node should be indexed and therefore available for querying. |
void |
SessionCache.PreSave.processAfterLocking(MutableCachedNode modifiedNode,
SessionCache.SaveContext context,
NodeCache persistentNodeCache)
Process the supplied existing node prior to saving the changes but only after the entry corresponding to the key of the node has been locked in Infinispan. |
Constructors in org.modeshape.jcr.cache with parameters of type NodeCache | |
---|---|
AllPathsCache(NodeCache cache,
NodeCache removedCache,
ExecutionContext context)
|
|
PathCache(NodeCache cache)
|
Uses of NodeCache in org.modeshape.jcr.cache.document |
---|
Subinterfaces of NodeCache in org.modeshape.jcr.cache.document | |
---|---|
interface |
DocumentCache
|
Classes in org.modeshape.jcr.cache.document that implement NodeCache | |
---|---|
class |
AbstractSessionCache
|
class |
ReadOnlySessionCache
A read-only SessionCache implementation. |
class |
TransactionalWorkspaceCache
A special WorkspaceCache implementation that should be used by sessions running within user transactions. |
class |
WorkspaceCache
A NodeCache implementation that uses Infinispan's SchematicDb for storage, with each node represented as a
single Document . |
class |
WritableSessionCache
A writable SessionCache implementation capable of making transient changes and saving them. |
Methods in org.modeshape.jcr.cache.document that return NodeCache | |
---|---|
NodeCache |
AbstractSessionCache.getWorkspace()
|
NodeCache |
WorkspaceCache.unwrap()
|
Constructors in org.modeshape.jcr.cache.document with parameters of type NodeCache | |
---|---|
NodeCacheIterator(NodeCache cache,
NodeKey startingNode)
|
Uses of NodeCache in org.modeshape.jcr.query |
---|
Methods in org.modeshape.jcr.query that return NodeCache | |
---|---|
NodeCache |
QueryContext.getNodeCache(String workspaceName)
Get the NodeCache for the given workspace name. |
Constructor parameters in org.modeshape.jcr.query with type arguments of type NodeCache | |
---|---|
QueryContext(ExecutionContext context,
RepositoryCache repositoryCache,
Set<String> workspaceNames,
Map<String,NodeCache> overriddenNodeCachesByWorkspaceName,
Schemata schemata,
PlanHints hints,
Problems problems,
Map<String,Object> variables)
Create a new context for query execution. |
Uses of NodeCache in org.modeshape.jcr.query.lucene |
---|
Method parameters in org.modeshape.jcr.query.lucene with type arguments of type NodeCache | |
---|---|
CancellableQuery |
LuceneQueryEngine.query(ExecutionContext context,
RepositoryCache repositoryCache,
Set<String> workspaceNames,
Map<String,NodeCache> overriddenNodeCachesByWorkspaceName,
QueryCommand query,
Schemata schemata,
PlanHints hints,
Map<String,Object> variables)
Execute the supplied query against the named workspace, using the supplied hints, schemata and variables. |
|
ModeShape Distribution 3.2.0.Final | |||||||||
PREV NEXT | FRAMES NO FRAMES |