dongyun7897 2015-11-20 10:47
浏览 58

getModel(),getSingleton()和getResourceModel()之间的区别?

From many days I was searching the differences between getModel(), getResourceModel() and getSingleton(). But could not cleared up the facts. Could you please help over this ?

Which one is the best for magento optimization ?

  • 写回答

1条回答 默认 最新

  • douluhaikao93943 2015-11-20 11:17
    关注

    simply put:

    • GetModel is used for busuiness logic, it retrieves a new instance from a class.

    • getSingleton is same, except it retrieves a single existing object.

    • getReosurceModel is used to interact with the database.

    Those are not used for optimization, every Model has a different "meaning". I prefer instantiating every model once and then working with them. If you have a model with existing vars and values and you need them in the further course of programming, then you should make use of the singleton pattern.

    HTH,

    MageZeus

    评论

报告相同问题?