org.hibernate.cache

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database ORM » hibernate » org.hibernate.cache 
org.hibernate.cache

This package defines APIs and implementations for the second-level cache and query cache.

Cache abstracts the underlying cache implementation. CacheConcurrencyStrategy abstracts various strategies for maintaining consistency between the cache and database. QueryCache abstracts the query result set cache.

Java Source File NameTypeComment
AbstractJndiBoundCacheProvider.javaClass Support for CacheProvider implementations which are backed by caches bound into JNDI namespace.
Cache.javaInterface Implementors define a caching algorithm.
CacheConcurrencyStrategy.javaInterface Implementors manage transactional access to cached data.
CacheException.javaClass
CacheFactory.javaClass
CacheKey.javaClass Allows multiple entity classes / collection roles to be stored in the same cache region.
CacheProvider.javaInterface Support for pluggable caches.
EhCache.javaClass EHCache plugin for Hibernate

EHCache uses a net.sf.ehcache.store.MemoryStore and a net.sf.ehcache.store.DiskStore . The net.sf.ehcache.store.DiskStore requires that both keys and values be java.io.Serializable . However the MemoryStore does not and in ehcache-1.2 nonSerializable Objects are permitted.

EhCacheProvider.javaClass Cache Provider plugin for ehcache-1.2.
FilterKey.javaClass Allows cached queries to be keyed by enabled filters.
HashtableCache.javaClass
HashtableCacheProvider.javaClass A simple in-memory Hashtable-based cache impl.
JndiBoundTreeCacheProvider.javaClass Support for JBossCache (TreeCache), where the cache instance is available via JNDI lookup.
NoCacheProvider.javaClass Implementation of NoCacheProvider.
NoCachingEnabledException.javaClass Implementation of NoCachingEnabledException.
NonstrictReadWriteCache.javaClass Caches data that is sometimes updated without ever locking the cache. If concurrent access to an item is possible, this concurrency strategy makes no guarantee that the item returned from the cache is the latest version available in the database.
OptimisticCache.javaInterface A contract for transactional cache implementations which support optimistic locking of items within the cache.

The optimisitic locking capabilities are only utilized for the entity cache regions.

Unlike the methods on the Cache interface, all the methods here will only ever be called from access scenarios where versioned data is actually a possiblity (i.e., entity data).

OptimisticCacheSource.javaInterface Contract for sources of optimistically lockable data sent to the second level cache.
OptimisticTreeCache.javaClass Represents a particular region within the given JBossCache TreeCache utilizing TreeCache's optimistic locking capabilities.
OptimisticTreeCacheProvider.javaClass Support for a standalone JBossCache TreeCache instance utilizing TreeCache's optimistic locking capabilities.
OSCache.javaClass
OSCacheProvider.javaClass Support for OpenSymphony OSCache.
QueryCache.javaInterface Defines the contract for caches capable of storing query results.
QueryCacheFactory.javaInterface Defines a factory for query cache instances.
QueryKey.javaClass
ReadOnlyCache.javaClass Caches data that is never updated.
ReadWriteCache.javaClass Caches data that is sometimes updated while maintaining the semantics of "read committed" isolation level.
StandardQueryCache.javaClass The standard implementation of the Hibernate QueryCache interface.
StandardQueryCacheFactory.javaClass Standard Hibernate implementation of the QueryCacheFactory interface.
SwarmCache.javaClass
SwarmCacheProvider.javaClass Support for SwarmCache replicated cache.
Timestamper.javaClass Generates increasing identifiers (in a single VM only). Not valid across multiple VMs.
TransactionalCache.javaClass Support for fully transactional cache implementations like JBoss TreeCache.
TreeCache.javaClass Represents a particular region within the given JBossCache TreeCache.
TreeCacheProvider.javaClass Support for a standalone JBossCache (TreeCache) instance.
UpdateTimestampsCache.javaClass Tracks the timestamps of the most recent updates to particular tables.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.