3 tier design and cache for ASP.NET 3.5

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Redhair

    3 tier design and cache for ASP.NET 3.5

    While using 3 tiers design in a ASP.NET 3.5 application development,
    we should cache the DAL or BLL or both objects?
  • bruce barker

    #2
    Re: 3 tier design and cache for ASP.NET 3.5

    not sure why you'd cache either. if either had any read only threadsafe
    objects, then you might cache them.

    -- bruce (sqlwork.com)


    Redhair wrote:
    While using 3 tiers design in a ASP.NET 3.5 application development,
    we should cache the DAL or BLL or both objects?

    Comment

    • Redhair

      #3
      Re: 3 tier design and cache for ASP.NET 3.5

      ex: the shop online catalog won't be changed frequently

      "bruce barker" <nospam@nospam. comwrote in message
      news:#T1ylMMLJH A.4324@TK2MSFTN GP05.phx.gbl...
      not sure why you'd cache either. if either had any read only threadsafe
      objects, then you might cache them.
      >
      -- bruce (sqlwork.com)
      >
      >
      Redhair wrote:
      >While using 3 tiers design in a ASP.NET 3.5 application development,
      >we should cache the DAL or BLL or both objects?

      Comment

      • Jayakrishnan

        #4
        Re: 3 tier design and cache for ASP.NET 3.5

        Redhair wrote:
        ex: the shop online catalog won't be changed frequently
        >
        "bruce barker" <nospam@nospam. comwrote in message
        news:#T1ylMMLJH A.4324@TK2MSFTN GP05.phx.gbl...
        >not sure why you'd cache either. if either had any read only
        >threadsafe objects, then you might cache them.
        >>
        >-- bruce (sqlwork.com)
        >>
        >>
        >Redhair wrote:
        >>While using 3 tiers design in a ASP.NET 3.5 application development,
        >>we should cache the DAL or BLL or both objects?
        >
        You could cache the data alone in presentation layer.

        Jay

        Comment

        Working...