M
MattC
I'm designing a simple timesheet system, I have done ASP sites before but
the bulk of my work is in VC++ systems.
I have have started with a list of classes that represent business objects
within the application. However, as persisiting these objects is
performance expensive in the ASP.NET model. What would be too large to
place in the Cache, I was thinking of putting all of the current users
details, username, department, etc.
Am I right in assuming that the Cache is a per-user resource?
Also previously I have created a standard class that control access to the
database. Then if any of my business logic classes require the DB they
simply use this class. Is this paradigm applicable in an ASP.NET app?
Any advice would be welcome.
MattC
the bulk of my work is in VC++ systems.
I have have started with a list of classes that represent business objects
within the application. However, as persisiting these objects is
performance expensive in the ASP.NET model. What would be too large to
place in the Cache, I was thinking of putting all of the current users
details, username, department, etc.
Am I right in assuming that the Cache is a per-user resource?
Also previously I have created a standard class that control access to the
database. Then if any of my business logic classes require the DB they
simply use this class. Is this paradigm applicable in an ASP.NET app?
Any advice would be welcome.
MattC