Connecting Tech Pros Worldwide Help | Site Map

Design pattern for file cache

  #1  
Old July 23rd, 2005, 02:59 AM
Leon Mergen
Guest
 
Posts: n/a
Hello,

I'm currently in the process of implementing a file cache, and am
looking for any existing design patterns. I hadn't had much luck with
google, is anyone aware of a good file cache pattern (in my case, I
think the update:request ratio is around 1:1000000).

Thanks in advance,

Leon Mergen

  #2  
Old July 23rd, 2005, 02:59 AM
davidrubin@warpmail.net
Guest
 
Posts: n/a

re: Design pattern for file cache



Leon Mergen wrote:[color=blue]
> Hello,
>
> I'm currently in the process of implementing a file cache, and am
> looking for any existing design patterns. I hadn't had much luck with
> google, is anyone aware of a good file cache pattern (in my case, I
> think the update:request ratio is around 1:1000000).
>
> Thanks in advance,
>
> Leon Mergen[/color]

Your description is a little vague. What do you mean by a "file cache"?
A cache of the contents of a single file? A cache of access handles to
multiple files? What operations do clients of this cache require? You
need to be more specific. /david

  #3  
Old July 23rd, 2005, 02:59 AM
Leon Mergen
Guest
 
Posts: n/a

re: Design pattern for file cache


On Sun, 2005-03-13 at 07:38 -0800, davidrubin@warpmail.net wrote:[color=blue][color=green]
> > I'm currently in the process of implementing a file cache, and am
> > looking for any existing design patterns. I hadn't had much luck with
> > google, is anyone aware of a good file cache pattern (in my case, I
> > think the update:request ratio is around 1:1000000).
> >[/color]
> Your description is a little vague. What do you mean by a "file cache"?
> A cache of the contents of a single file? A cache of access handles to
> multiple files? What operations do clients of this cache require? You
> need to be more specific. /david[/color]

Ah ok, I'm sorry.. :)

The cache should consist of the contents of image files; these image
files are requested by other classes inside the system. The cache should
ideally work with 'keys' based on file locations inside the system, so
yes, this cache would probably be based on handles to multiple files.
Since it is a multi-threaded server application, the cache should be
thread-safe (and since there are far more reads that updates, ideally
should be based on lock-free/wait-free synchronization).

The thing is, this whole thing isn't /that/ hard to implement, but my
experience with patterns is that they often keep certain aspects in
consideration that i didn't consider yet ... :)

Thanks in advance,

Leon Mergen



Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
python-dev Summary for 2005-09-01 to 2005-09-15 Tony Meyer answers 0 November 22nd, 2005 01:15 AM
design pattern of "Business Layer" Hasan O. Zavalsiz answers 8 November 17th, 2005 05:36 PM
design pattern of "Business Layer" Hasan O. Zavalsiz answers 9 November 17th, 2005 10:53 AM
author index for Python Cookbook 2? Andrew Dalke answers 10 July 19th, 2005 12:26 AM