IMHO storing data in blobs is a horrible idea.
If you are coding an application, I'd suggest checking out MogileFS.
If this is for general purpose web hosting, where you need a normal
POSIX filesystem to access, then that won't do. But for applications,
it seems like a great idea (and from what small amount I read about
the Google FS, it actually has a couple of the same traits)
As far as session management, a central session manager such as
msession would work, or just roll your own off a database - it's
simple in PHP (that is what I do) - then use DB
failover/replication/etc. software to handle the DB
clustering/failover.
On 6/6/06, K Kopper <karl_kopper@xxxxxxxxx> wrote:
If you are building an application from scratch then
your best bet is probably to store data using a
database and not the file system.
|