Giter Site home page Giter Site logo

Comments (2)

moufmouf avatar moufmouf commented on August 24, 2024

Ok. 2 things here:

  • You should indeed avoid using DaoFactory as much as possible. When a controller or a service depends on DaoFactory, it means it depends potentially on any table in the data model. If you only inject the required DAOs, you know (just by looking at the constructor's signature) what tables are used. So it's a good practice to depend on the minimum possible dependencies

  • Regarding DAOFactory performance, it was indeed bad until TDBM 5.1 because the DaoFactory had to instantiate all the DAOs. In TDBM 5.1, the DAOs are instantiated on the fly from the container. It means that:

    • you must inject the container in the DaoFactory.
    • you no longer have performance problems.

So starting with TDBM 5.1, you can use the DaoFactory without any performance impact... but I would still consider it a bad practice :)

from tdbm.

WizMik avatar WizMik commented on August 24, 2024

Got it ! Thanks :D !

from tdbm.

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.