FLUTTER + ELASTICSEARCH FULL TEXT SEARCH [PART A] - FLUTTER+ELASTICSEARCH IMPLEMENTTATION

Поделиться
HTML-код
  • Опубликовано: 30 ноя 2024

Комментарии • 18

  • @arnonym1525
    @arnonym1525 Год назад +2

    Really informative and helpful

  • @lindelaninthangeni432
    @lindelaninthangeni432 2 года назад

    great video dude, and i like the music in the background.

  • @AsliArtistVlogs
    @AsliArtistVlogs 3 года назад +1

    Amazing video Kiibati! Thanks a ton!

  • @MrJosephteoh8888
    @MrJosephteoh8888 4 года назад

    Nice. Love the music in background too. Thanks.

  • @johassan3809
    @johassan3809 4 года назад +2

    Awesome! Will you make Flutter+Firebase Firestore+ ElasticSearch??

    • @kiibati5085
      @kiibati5085  4 года назад +1

      Yes, that video would be out hopefully next week.
      Working on that right now : )

  • @rohantaneja3861
    @rohantaneja3861 4 года назад +1

    This is a good tutorial. Thanks!

  • @zakblacki
    @zakblacki 3 года назад +1

    Can you please update the package dependencies to latest version not compatible with your code

  • @akshay6019
    @akshay6019 4 года назад

    Awesome

  • @zaynabreza9793
    @zaynabreza9793 3 года назад +1

    Followed the instructions exactly and the app runs well, documents are getting inserted as well but the search is not working. It only says "still searching"
    Would could be possible reason for this?

  • @Himricks
    @Himricks 3 года назад

    Can you make aws+ elastic search+ flutter

  • @ricard458
    @ricard458 3 года назад

    Great video! I have one question. How can I implement the following query in flutter. It is a match_phrase
    POST fb-post/_search
    {
    "query": {
    "match_phrase": {
    "description" : {
    "query" : "deeply concerned",
    "slop": 2
    }
    }
    }
    }

  • @harshavardhan8181
    @harshavardhan8181 4 года назад

    Hi, I have a json format will you able to help me out with that, as I couldn't find useful articles..

    • @harshavardhan8181
      @harshavardhan8181 4 года назад

      for this..
      {
      "size": 0,
      "aggs": {
      "sales_over_time": {
      "date_histogram": {
      "field": "createdon",
      "calendar_interval": "hour"
      },
      "aggs":{
      "revenuetype":{
      "terms":{
      "field":"revenuetype"
      },
      "aggs":{
      "amount":{
      "sum":{
      "field":"amount"
      }
      }
      }
      }
      }
      }
      }
      }

    • @kiibati5085
      @kiibati5085  4 года назад

      Hi,
      I believe this is what you need.
      "{\"size\":0,\"aggs\":{\"sales_over_time\":{\"date_histogram\":{\"field\":\"createdon\",\"calendar_interval\":\"hour\"},\"aggs\":{\"revenuetype\":{\"terms\":{\"field\":\"revenuetype\"},\"aggs\":{\"amount\":{\"sum\":{\"field\":\"amount\"}}}}}}}}"
      I usually use this link : tools.knowledgewalls.com/jsontostring
      I am assuming you are trying to send a query

    • @harshavardhan8181
      @harshavardhan8181 4 года назад

      Sorry my bad I didn't ask the question properly, so I have to do a post call as normally I use http package for doing it but how to make a elastic search query mean search query where you send body to the transport and get data and that's my json how to write the query is my questiom