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…
This blog is for generating names, based on the frequency they occur. It can be easily adjusted for any country if you have similar data. It’s generating the names based on the statistics how often Read more…
Service Fabric is a great tool for implementing Microservices pattern and ASP.NET MVC is a great framework for websites. How to connect these two? There are different ways you can remotely call a service from Read more…
Some scripts require execution in 64 bit environment. This blog is a guide how you can switch Jason to execute them. A good example of such script will be the deployment script for Service Fabric. 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…