facebook
How to integrate ElasticSearch in ASP.NET Core

How to integrate ElasticSearch in ASP.NET Core

I’d bet you’ve certainly been asked to add advanced search features to your Web application, and often a full-text Google-like search.During the development of an e-commerce of technology, we were asked to allow users to perform advanced research on the products, so...
Angular, Microservices and Authentication

Angular, Microservices and Authentication

I am working on a new project, for which I need to authenticate an Angular client to access to a set of microservices. The permission to access each microservices depends on the current user privileges, and I need to be independent of the authentication mechanism. We...
Orchestrate events with Rebus

Orchestrate events with Rebus

In the previous article, we saw how the use of a service bus could benefit software systems where the decoupling between their parts is necessary. In particular, we have seen how to do that with Rebus. Rebus makes available a very interesting feature: the ability to...
Stopping asynchronous Jobs of Quartz 3

Stopping asynchronous Jobs of Quartz 3

During the common refactoring on a client’s project, we converted the previous synchronous code in an asynchronous version, using the Tasks and the pattern async-await of the .NET framework. I suggest that you read the article about this issue,...