Giter Club home page Giter Club logo

Comments (2)

Qsppl avatar Qsppl commented on May 27, 2024 1

Thanks, store.clear(model, false) completely solved the problem.

I store pointers to related models and in both sides:

  1. The user has links to comments.
  2. Comments have links to the user about whom the comment was created.

image

It is necessary to store pointers to comments with the user (1) in order to have information about user comments before loading the comments themselves. This is especially important when lazy loading comments.

Here we see that the user/company has comments:
image

But here it’s not:
image

In this case, comments will not load until the user opens the corresponding comments section

With this approach, hybrids loads each model separately, but in my case this is even better due to the use of http2 and http caching. In this option, when changing one comment, there is no need to invalidate all user comments, and there is also no need to write complex logic for updating the cache when adding a new comment.

from hybrids.

smalluban avatar smalluban commented on May 27, 2024

For the sake of future readers, I assume that you have the following relation:

user -> comment[] (one to many)

Reverse relation

Regardless of how the relation is stored in the database, it's always the safest to store reverse relation in the model, then you have many to one (from many).

In this case, you would have:

const Comment = {
  user: User,
  [store.connect]: {
    ...,
    list({ user }) { 
      // get list of comments for the user
      return api.get(`/users/${user}/comments`)...
    },
  },
};

In the above example, the user model doesn't have to include that relation at all. If you need a list of comments related to the user you call const listForUser = store.get([Comment], { user: "1" }).

To prevent invalidating all of the lists (for all of the users), when creating a comment, you can clear the list for a specific user by passing the list to the store.clear(listForUser, false).

EDIT: This nested model idea was wrong, sorry (I removed it to avoid confusion) ;)

from hybrids.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.