If you're going to develop a community/portal-like application, I'd
suggest taking a look at the IBuySpy Portal code[1].  The code is very
modular and implements user objects for storing user meta-data as well
as server-side .ascx controls for modularity and flexibility of display.
Best of all, you're allowed to use parts (if not all, someone please
correct me if I'm wrong) of the code in your own application w/no
strings attached.


[1]
http://www.ibuyspyportal.com/

--Oren


> -----Original Message-----
> From: The DOTNET list will be retired 7/1/02
> [mailto:[EMAIL PROTECTED]] On Behalf Of Francesco Sanfilippo
> Sent: Monday, June 03, 2002 2:20 PM
> To: [EMAIL PROTECTED]
> Subject: [DOTNET] OO Architecture question...
>
> I am designing a .NET web community app (ala MSN, Yahoo) in C#.  I
want it
> to be as OO as possible, but maintain scalability and performance.
Here's
> what I have so far...
>
> Create a Member object when a user signs in.  Run a single sproc that
> returns multiple result sets to populate various strings, ints, and
> DataTable properties of the Member object.  Store the Member object in
> Session.  DataTables represent 1-to-many relationships, like a
member's
> buddy list.  SELECT/UPDATE/INSERT/DELETE methods for each table are
> methods
> of the Member class.  When a data-modifying method is called
> (UPDATE/INSERT/DELETE), the sproc returns a fresh copy of the data to
> repopulate the DataTable being changed.  Outside of the initial bulk
load,
> the DB is hit ONLY when a data-modifying method is called, since the
> user-specific data is pre-cached.
>
> This heavily minimizes DB hits, keeps small chunks of user data close
at
> hand, and maintains an OO design.  What I am concerned with is how
well it
> will scale, perform with lots of concurrent users, and work in a web
farm
> scenario (assuming use of a dedicated state server)?  Also, would
saving
> these DataSets for Members in Cache be better than stuffing them into
> Session?
>
> Thanks in advance...
>
> Francesco Sanfilippo
> ASP, .NET, SQL, C#
> San Diego, CA.
>
> _________________________________________________________________
> Send and receive Hotmail on your mobile device: http://mobile.msn.com
>
> You can read messages from the DOTNET archive, unsubscribe from
DOTNET, or
> subscribe to other DevelopMentor lists at http://discuss.develop.com.

You can read messages from the DOTNET archive, unsubscribe from DOTNET, or
subscribe to other DevelopMentor lists at http://discuss.develop.com.

Reply via email to