NoSQL
Quick database cache solution for documents
When the database you are using has slow access you may use a cache to speed up the execution. In this blog I’ll share how you can speed up your application if you are using Read more…
When the database you are using has slow access you may use a cache to speed up the execution. In this blog I’ll share how you can speed up your application if you are using Read more…
In my previous blog, I wrote about common approaches how to save a sorted list in a database. I didn’t find an implementation of the hybrid approach and as it’s very simple I’ll share an Read more…
Do you have ranked, sorted or ordered data and are wondering how to save it in a database? That’s a common problem where the most common approaches are to use either an indexed or linked Read more…
Upsert is a function that does Insert or Update with one call, depending on whether the item exists or not. It has different implementations in many databases. Upsert is very helpful in implementing Web API, Read more…
A common problem when building SSAS solutions is that some customers want to deploy your application on-premises. Often there are some requirements of what you can install and what not. The database is one limitation, Read more…