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…
Service Fabric is a powerful tool for scaling any cloud application, but it has one problem. Running the application and debugging can take a lot of time. Also, some of the features of Visual Studio Read more…
If you are using Service Fabric, most probably you are deploying through Visual Studio or having a build in TFS. However, there is an option with Jenkins which is not documented, but easy to set Read more…
This is one of the steps to enable Continuous delivery with Jenkins for a Service Fabric application. You can see all the steps here: http://blog.geo.bg/2017/11/12/continuous-delivery-for-a-service-fabric-application-with-jenkins/ You have (almost) everything for automatic deployment included in the 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…