https://github.com/clickermonkey/rekord-java
An ORM for Java with intelligent loading and caching
https://github.com/clickermonkey/rekord-java
Last synced: 11 months ago
JSON representation
An ORM for Java with intelligent loading and caching
- Host: GitHub
- URL: https://github.com/clickermonkey/rekord-java
- Owner: ClickerMonkey
- Created: 2013-12-30T03:29:59.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-30T03:04:32.000Z (about 12 years ago)
- Last Synced: 2025-01-27T10:23:14.205Z (about 1 year ago)
- Language: Java
- Size: 1.95 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Rekord
======
An ORM for Java with intelligent loading and caching
# TODO
#### Features to Implement
- ~~Validation (through Listeners)~~
- ~~Initializers~~
- ~~Sequences~~
- Encrypted Fields
- Salted Encrypted Fields
- ~~Partial Selection (like the first 100 characters of a text field)~~
- ~~Application Caching (opposed to transaction caching)~~
- ~~Native Queries~~
#### Simple Changes
- Model has BitSet of set values to quickly know that it already has a view
- View has BitSet of fields (based on their indices)
- ~~Caching options in Configuration~~
- Import XML option
- Many-to-Many field
- Table Extensions (no way to know what the implementation is)
- Table Polymorphism (distinction field)
- Generic Pointer (distinction field, key)
- Improve LazyList performance
- Outer-Join fetching for one-to-one
- ~~Cascade Save option [default=true]~~
- ~~Schema option (global and table level) [default depends on database implementation]~~
- Catalog option (global and table level) [default depends on database implementation]
- ~~Dynamic-Insert option (if a field is given, supply it even if it's generated)~~
- ~~Dynamic-Update option (only update what has changed)~~
- SelectQuery.list returns LazyList
- Select-Before-Update (ensure a change hasn't occurred since when the model was loaded)
- ~~Formula Fields~~
- Saving Order?
#### Other Changes
- Move all SQL to one place, make Transaction in charge of making all queries
- ~~Only insert into history if one of the history columns will be updated~~
- Only create and save OneToOne model if the field was selected OR it's an insert