i have simple table
Posts id title contentwhat is the best practice to handle with non active post
1- use the temp_posts table to move non-active posts to this table 2- just set flag for post's active fieldmy own prefer is to use 1 solution,
cause you would not use condtion (active = 1) everytime i use find commandso what you can offer to escape of using condition (active = 开发者_Python百科1) everytime
It'd go with #2. You have the overhead of a completely separate Model and find() code with #1. If you didn't want to set tcondition = array('active' => 1) everytime, default it in the Post Model by using beforeFind(). Although the latter may not work in all cases when finding on multiple models.
I don't think it will make a lot of difference if the active field is numeric type. It will make many other operations easy. So I will go for the second one.
I don't think there is a best practice for this case, both solutions have their advantages and disadvantages, see Jason's answer.
Personally, I tend for #1, because on a conceptual level you probably have Drafts and Posts, and not Posts which are either active or inactive. It's a subtle difference, but in the first case the two models can have different attributes. For example, a Post will probably have a PublicationDate, whereas such an attribute doesn't make sense for a Draft. You can't model this by only using a Post model.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论