|
3 | 3 | [Aerospike](https://www.aerospike.com) is one of, if not the fastest, NoSQL database in the world. It presents a Java API which is comprehensive and powerful, but requires a measure of boiler plate code to map the data from Java POJOs to the database. The aim of this repository is to lower the amount of code required when mapping POJOs to Aerospike and back as well as reducing some of the brittleness of the code.
|
4 | 4 |
|
5 | 5 | # Table of contents:
|
6 |
| -1. [Motivation and a simple example](#Motivation-and-a-simple-example) |
7 |
| -2. [Getting Started](#Getting-Started) |
8 |
| -3. [Constructors](#Constructors) |
9 |
| -4. [Keys](#Keys) |
10 |
| -5. [Fields](#Fields) |
11 |
| -6. [Properties](#Properties) |
12 |
| -7. [References to other objects](#References-to-other-objects) |
13 |
| - + 7.1. [Associating by Reference](#Associating-by-Reference) |
14 |
| - + 7.1.1. [Batch Loading](#Batch-Loading) |
15 |
| - + 7.2. [Aggregating by Embedding](#Aggregating-by-Embedding) |
16 |
| - + 7.2.1. [Versioning Lists](#Versioning-Lists) |
17 |
| - + 7.2.2. [List Ordinals](#List-Ordinals) |
18 |
| - + 7.2.3. [The importance of Generic Types](#The-importance-of-Generic-Types) |
19 |
| -8. [Advanced Features](#Advanced-Features) |
20 |
| - + 8.1. [Placeholder replacement](#Placeholder-replacement) |
21 |
| - + 8.2. [Subclasses](#Subclasses) |
22 |
| - + 8.2.1. [Data Inheritance](#Data-Inheritance) |
23 |
| - + 8.2.2. [Subclass Inheritance](#Subclass-Inheritance) |
24 |
| - + 8.3. [Custom Object Converters](#Custom-Object-Converters) |
25 |
| -9. [External Configuration File](#External-Configuration-File) |
26 |
| - + 9.1. [File Structure](#File-Structure) |
27 |
| - + 9.1.1. [Key Structure](#Key-Structure) |
28 |
| - + 9.1.2. [Bin Structure](#Bin-Structure) |
29 |
| - + 9.1.3. [Embed Structure](#Embed-Structure) |
30 |
| - + 9.1.4. [Reference Structure](#Reference-Structure) |
31 |
| -10. [Virtual Lists](#Virtual-Lists) |
| 6 | +1. [Compatibility with Aerospike Clients](#Compatibility-with-Aerospike-Clients) |
| 7 | +2. [Motivation and a simple example](#Motivation-and-a-simple-example) |
| 8 | +3. [Getting Started](#Getting-Started) |
| 9 | +4. [Constructors](#Constructors) |
| 10 | +5. [Keys](#Keys) |
| 11 | +6. [Fields](#Fields) |
| 12 | +7. [Properties](#Properties) |
| 13 | +8. [References to other objects](#References-to-other-objects) |
| 14 | + + 8.1. [Associating by Reference](#Associating-by-Reference) |
| 15 | + + 8.1.1. [Batch Loading](#Batch-Loading) |
| 16 | + + 8.2. [Aggregating by Embedding](#Aggregating-by-Embedding) |
| 17 | + + 8.2.1. [Versioning Lists](#Versioning-Lists) |
| 18 | + + 8.2.2. [List Ordinals](#List-Ordinals) |
| 19 | + + 8.2.3. [The importance of Generic Types](#The-importance-of-Generic-Types) |
| 20 | +9. [Advanced Features](#Advanced-Features) |
| 21 | + + 9.1. [Placeholder replacement](#Placeholder-replacement) |
| 22 | + + 9.2. [Subclasses](#Subclasses) |
| 23 | + + 9.2.1. [Data Inheritance](#Data-Inheritance) |
| 24 | + + 9.2.2. [Subclass Inheritance](#Subclass-Inheritance) |
| 25 | + + 9.3. [Custom Object Converters](#Custom-Object-Converters) |
| 26 | +10. [External Configuration File](#External-Configuration-File) |
| 27 | + + 10.1. [File Structure](#File-Structure) |
| 28 | + + 10.1.1. [Key Structure](#Key-Structure) |
| 29 | + + 10.1.2. [Bin Structure](#Bin-Structure) |
| 30 | + + 10.1.3. [Embed Structure](#Embed-Structure) |
| 31 | + + 10.1.4. [Reference Structure](#Reference-Structure) |
| 32 | +11. [Virtual Lists](#Virtual-Lists) |
| 33 | + |
| 34 | +# Compatibility with Aerospike Clients |
| 35 | + |
| 36 | +|`java-object-mapper` Version | Aerospike Client | Aerospike Reactor Client |
| 37 | +| :----------- | :----------- | :----------- |
| 38 | +| 1.2.0 | 5.1.x | 5.0.x |
| 39 | +| 1.1.0 | 5.0.x | |
32 | 40 |
|
33 | 41 | # Motivation and a simple example
|
34 | 42 | Consider a simple class:
|
|
0 commit comments