Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stazz/java-tablecache
A small project to effectively and easily cache rows of SQL tables.
https://github.com/stazz/java-tablecache
Last synced: about 1 month ago
JSON representation
A small project to effectively and easily cache rows of SQL tables.
- Host: GitHub
- URL: https://github.com/stazz/java-tablecache
- Owner: stazz
- Created: 2011-07-27T00:40:39.000Z (over 13 years ago)
- Default Branch: develop
- Last Pushed: 2012-10-12T14:40:23.000Z (about 12 years ago)
- Last Synced: 2023-03-11T08:41:13.088Z (almost 2 years ago)
- Homepage:
- Size: 188 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
The TableCache project provides ways of indexing contents of tables into memory. This greatly improves performance in repository-oriented applications, where the data in the repository might occasionally be changed by some other application. Instead of actively retrieving the value from the repository every time it is needed, it will be retrieved from the cache. This cache may then be updated every time the data in repository gets changed.
The creation of the cache may be customized. The customization include: from which schema, from which tables to read data from, which indexing technique to use when storing the rows of each table, etc.
Reading data is made as quick and easy as possible, provided the rows are indexed with indexing technique supporting the various ways of retrieving data. One example of such data retrieval is retrieving rows with partial primary key.