Professional Search with C# and Elasticsearch (Part 2)

Поділитися
Вставка
  • Опубліковано 23 лип 2024
  • Hi everyone, in this series we use Elasticsearch and its amazing text searching capabilities. We take a closer look at its advantages over traditional databases, especially when it comes to performing complex searches on fields. We connect to an Elasticsearch Docker image, create and initialize an index, and finally apply our search. This is part 2 of the series, and you can refer to the chapters for more details on what's included. I hope you'll enjoy it!
    Source code : github.com/spyroskatsios/YouT...
    Complete Playlist : • Elasticsearch
    Chapters:
    00:00 : Configuring the entity for elastic
    04:20 : Creating the index
    08:05 : Initializing the index
    #dotnet #elastic #elasticsearch

КОМЕНТАРІ • 2

  • @cozminciorteanu7848
    @cozminciorteanu7848 Рік тому

    Very nice video! Thanks for all the info! May I ask, how would you keep in sync the DB with ElasticSearch considering the DB updates frequently?

    • @spyroskatsios
      @spyroskatsios  Рік тому

      Thak you for your kind words. You can raise an event when something that needs to change in your index changes in your db and then change it immediately. Or you can change it some other time with a scheduled task. You can also have a task to update the whole index at some time. It depends on what changes you want to be seen immediately. Hope that helps!