Add Sample Code and Spring Boot application for Inline Caching.

This commit is contained in:
John Blum
2019-07-31 18:25:31 -07:00
parent 18dffa791b
commit 7867bc4b17
11 changed files with 479 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS calculations (
operand INTEGER NOT NULL,
operator VARCHAR(256) NOT NULL,
result INTEGER NOT NULL,
PRIMARY KEY (operand, operator)
);