Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 1.1 KB

File metadata and controls

9 lines (7 loc) · 1.1 KB

06 - Azure SQL Key-Value Sample

There are no specific features for create a key-value store solution, as Memory-Optimized Tables can be used very efficiently for this kind of workload. Memory-Optimized tables can be configured to be Durable or Non-Durable. In the latter case data is never persisted and they really behave like an in-memory cache. Here's some useful links:

This repo contains what is needed to get a kickstart to implement a Key-Value store Azure SQL. The Jupyter Notebook contains the basic idea with some additional explanations and also with performance tests results. The SQL file contains everything neede to create the sample and run the test on your own.