summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLaMont, William (wl2432) <wl2432@us.att.com>2018-08-31 10:56:17 -0400
committerLaMont, William (wl2432) <wl2432@us.att.com>2018-08-31 11:10:32 -0400
commit571d6f65cf5e0e5334956dbe11730fd47820b947 (patch)
treeca23e0f64ca2968b4a933cb6a0bb0b4781bc24e8 /README.md
parent6ed92ea7526678f245a9123d2ee97a6a9e2c3bf1 (diff)
initial code for cacher
Issue-ID: AAI-1473 Change-Id: I8babe91e79f5c1e6e97b0f5b6dc827b8c5caec80 Signed-off-by: LaMont, William (wl2432) <wl2432@att.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d2e6d4c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,38 @@
+# Cacher Microservice
+
+
+Build and test
+````bash
+ mvn clean install
+````
+
+Run spring boot
+```bash
+ mvn spring-boot:run
+```
+
+if on Windows the startSpring.bat file can be used to start the mS with the debug port configured
+
+The purpose of this microservice is to provide the ability to store and force update cached responses as well as for particular cases update the cached data from consuming dmaap events.
+
+##Cache Key Inventory API endpoints
+
+localhost:8444/aai/cacheKey/get
+
+localhost:8444/aai/cacheKey/delete
+
+localhost:8444/aai/cacheKey/add
+
+localhost:8444/aai/cacheKey/update
+
+##Cache API endpoints
+
+localhost:8444/aai/cache/delete
+
+localhost:8444/aai/cache/sync
+
+localhost:8444/aai/cache/get
+
+
+
+