[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.caching

3 tier design and cache for ASP.NET 3.5

Redhair

10/12/2008 9:44:00 PM

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

unknown

10/12/2008 11:35:00 PM

0

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?

Redhair

10/13/2008 4:27:00 AM

0

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

"bruce barker" <nospam@nospam.com> wrote in message
news:#T1ylMMLJHA.4324@TK2MSFTNGP05.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?

Jayakrishnan

10/13/2008 7:20:00 AM

0

Redhair wrote:
> ex: the shop online catalog won't be changed frequently
>
> "bruce barker" <nospam@nospam.com> wrote in message
> news:#T1ylMMLJHA.4324@TK2MSFTNGP05.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