Is a Multi-DAL Approach the way to go here?

Posted by Krisc on Stack Overflow See other posts from Stack Overflow or by Krisc
Published on 2010-04-15T21:19:21Z Indexed on 2010/04/15 21:23 UTC
Read the original article Hit count: 187

Filed under:
|
|
|

Working on the data access / model layer in this little MVC2 project and trying to think things out to future projects.

I have a database with some basic tables and I have classes in the model layer that represent them. I obviously need something to connect the two. The easiest is to provide some sort of 'provider' that can run operations on the database and return objects.

But this is for a website that would potentially be used "a lot" (I know, very general) so I want to cache results from the data layer and keep the cache updated as new data is generated.

This question deals with how best to approach this problem of dual DALS. One that returns cached data when possible and goes to the data layer when there is a cache miss. But more importantly, how to integrate the core provider (thing that goes into database) with the caching layer so that it too can rely on cached objects rather than creating new ones.

Right now I have the following interfaces:

IDataProvider is used to reach the database. It doesn't concern itself with the meaning of the objects it produces, but simply the way to produce them.

interface IDataProvider{
    // Select, Update, Create, et cetera access
    IEnumerable<Entry> GetEntries();

    Entry GetEntryById(int id);
}

IDataManager is a layer that sits on top of the IDataProvider layer and manages the cache

interface IDataManager : IDataProvider{
    void ClearCache();
}

Note that in practice the IDataManager implementation will have useful helper functions to add objects to their related cache stores. (In the future I may define other functions on the interface)

I guess what I am looking for is the best way to approach a loop back from the IDataProvider implementations so that they can access the cache. Or a different approach entirely may be in order? I am not very interested in 3rd party products at the moment as I am interested in the design of these things much more than this specific implementation.

Edit: I realize the title may be a bit misleading. I apologize for that... not sure what to call this question.

© Stack Overflow or respective owner

Related posts about asp.net-mvc-2

Related posts about c#