Query Caching | New Feature Tutorial

Поділитися
Вставка
  • Опубліковано 31 січ 2025

КОМЕНТАРІ • 40

  • @beepypeepy
    @beepypeepy Рік тому +8

    Thanks for this. I would love to see these official FlutterFlow videos put out with much higher frequency! There is so much functionality in flutterflow that is never really touched upon in the documentation or official tutorials...

  • @Heiko_Kanzler
    @Heiko_Kanzler Рік тому +6

    (btw, I love the FF videos. Clear voice, clear path, easy to follow 🌟🌟🌟🌟🌟

  • @fictionplus
    @fictionplus Рік тому +5

    I'm loving these videos nowadays

  • @syedaliasgar7034
    @syedaliasgar7034 Рік тому +7

    Using flutterflow for creating an app for my project. Really loving it so far. The only thing that is really frustrating is that we can only add, update or delete only one document at a time in the onclick function..
    It would really be helpful if the option to add multiple documents is introduced

  • @joeovip
    @joeovip Рік тому +2

    Keep these videos coming!! Thank you!! 🙏🏼🙏🏼🙏🏼🙏🏼

  • @didiDanaila
    @didiDanaila Рік тому +2

    II like your tutorials, very well explained. Your english is slow and clear, nice voice ... this helps me a lot. I'd like to see more content like this. Maybe some short videos like "widget of the week" would be a good idea.. You have five stars from me.

  • @valirmasha4718
    @valirmasha4718 Рік тому +2

    Yes yes. I like this real world example and explain as visual and keyword to explain what it is then show on real build. 🎉

  • @outmohamed9184
    @outmohamed9184 Рік тому +1

    Great tutorial, does this method alow use to economize read query to firestore ( to reduce the cost ?)

  • @Heiko_Kanzler
    @Heiko_Kanzler Рік тому +1

    Guys, wonderful tutorial. Unfortunately, the last seconds, where the widgets are shown, the recommendations for further videos cover some widgets ;-)

  • @vineeth.vijayan314
    @vineeth.vijayan314 Рік тому +2

    Thanks for this, but I would love to see if I can save the result of backend query with supabase or firebase to be saved into a app state also. This will allow us to modify the info and save

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

    Nice! More video about caching data please

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

    Finally found this video. It was stated that it can be cleared when the Backend Data updates. I was looking for that as a popup option but I'm not seeing it. Is this built in and I'm not seeing this, or am is this something I have to create using a custom function? Thanks for the great videos.

  • @Dreysimmons
    @Dreysimmons Рік тому +1

    great! needed this explanation!

  • @lemonslice7286
    @lemonslice7286 Рік тому +1

    This is great, thanks for this.

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

    Thank you for the video! If you want to add endcards on your youtube videos it would be good to add an outro to the video. In this particular video I cannot see all the widgets that trigger rebuilds because they are covered by the endcard.

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

      Thanks for the feedback!

    • @Jean-PaulCh
      @Jean-PaulCh Рік тому

      @@FlutterFlow Are you going to fix this or publish a link with the list of widgets that trigger rebuilds?

  • @Leon-ze7gb
    @Leon-ze7gb Рік тому

    Already a follower! I just subscribe coz am really working on a project when I can build an invest app. The main feature is I want customers to deposit money then after some appointed days they must have the possibility to withdraw the money with an interest. Am desperately looking for the solution. Thank you

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

    What's the benefit of this opposed to just storing the API result in a variable?

    • @FlutterFlow
      @FlutterFlow  Рік тому +4

      Great question! A couple of benefits:
      1. You reduce all the management of that variable
      2. You reduce the number of app state variables
      3. You have cleaner options for handling multiple caches within one cache (i.e. unique keys)
      4. Performance optimizations with Firebase
      Those are just a few. As a general rule, this is the feature designed for caching. You could do caching with variables but in many ways it's just not going to be as good.

    • @avalons343
      @avalons343 Рік тому +1

      @@FlutterFlow this makes sense, thank you. I can definitely see this speeding things up.

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

    Hi! How persistence data cache works? If the app is closed, the cache is cleared? Is there a time auto clear, like one week or one month?

    • @FlutterFlow
      @FlutterFlow  Рік тому +4

      Hey! Yes, the cache is cleared when the app is closed.

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

      @@FlutterFlow How can I store thousands of records on device for querying, without having to downloads them all each time the app starts?

  • @flutterflowexpert
    @flutterflowexpert Рік тому +2

    Great video FF!
    You took my job

  • @GauravSingh-zz9rf
    @GauravSingh-zz9rf 6 місяців тому

    I tried but one cannot use query caching to display images on another page without re-downloading

  • @LutherBanze.
    @LutherBanze. 3 місяці тому +1

    Love FF❤

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

    Can we get this complete project file?

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

    How I build app like Twitter?
    And We want to speed up the web

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

    Hi. I am having an issue in my flutterflow app while using firestore queries. In the database I have a collection and it has 3 documents. Each document has a sub-collection. Finally, each sub collection has some documents (max 12)
    When I test the app in test/debug mode it seems to be working fine but when I test it in my android phone that has 4 GB RAM, it crashes the app every time. I know the issue is with the queries as I tried replacing them with json data in app state and it worked smoothly.
    They query is a very simple one which is called on page load and I have also checked the "Query only once" or similar option. I then use a page state to go to display contents of next document on the page.
    Can someone please help me figure out what I'm doing wrong?

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

    If possible rating star ⭐️ tutorial pls

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

    Tengo un List View con sus respectivos List, ejecutando un Query Collections, esto se almacena y los usuarios pueden escribir una frase y se muestran en modo de Lista. MI PREGUNTA ES: como puedo limitar que escriban una sola vez en el list?. porque la acción permite un "nuevo mensaje" pero no puedo bloquear para que si ya alguien escribió, no escriba algo más hasta que se borre. SI ALGUIEN SABE LO AGRADECERÍA. En una lógica de progr. sería algo como: "si Fulano ya escribió en el list, identifica su usuario o ID y no le permitas escribir nuevamente hasta que se borre ese mensaje"

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

      No se si ya lo resolviste o no pero lo que yo haría sería tienes una lista donde las personas deben de poder escribir solo una vez, entonces yo añadiría a él query una campo llamado usuarios_anotados y en el flujo de acción pondría una acción condicional que me dijera "si ID de autenticated user esta en la lista de (usuarios_anotados)" regresa true si no false y en true pondría la acción show snack bar "usuario ya anotado"(o mensaje de tu eleccion) y en false la acción de añadir pregunta y ya esta listo solo debes de usar una acción condicional que te diga si el user ya está en esa lista o no, no es necesario usar filtros de firebase por que recordemos que para hacer filtros por lista solo permite hasta 10 ítem en lista entonces ya que tienes la query solo buscas en la lista de usuarios y listo en fin

  • @ferbertransactions
    @ferbertransactions Рік тому +1

    Flutterflow has intentionally restricted my chat support access and refuses to respond to my emails for support! Frankly this is childs play and I will be filing multiple complaints across the board.

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

    low response 👎