Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: To cache or not to cache

by perrin (Chancellor)
on Mar 13, 2006 at 18:39 UTC ( [id://536334]=note: print w/replies, xml ) Need Help??


in reply to To cache or not to cache

Cache::Filecache is often slower than MySQL. I suggest you switch to Cache::FastMmap instead. It's one of the only things around that are faster than a MySQL query.

Replies are listed 'Best First'.
Re^2: To cache or not to cache
by diego_de_lima (Beadle) on Mar 15, 2006 at 20:35 UTC
    I´ve writen a fully functional persistent framework which was finished just some weeks ago. My experience was:

    1. I tried Class::DBI and Tangram first, but they were too poor in resources for the project we were creating.

    2. Decided to create my own persistence class. Started simple, finished complex (3000 lines of intensive programing).

    3. I´ve found the need to cache all schema definitions, permissions, user info, etc. Choosed MLDBM with Storable and BerkeleyDB, just becouse it is faster than anything else (Cache::*, MySQL, etc). There iss no cache os table data in the system, but only system/schema definitions.

    4. My persistence class loads up all columns of the row into memory executing a "SELECT *", with no need to access Postgres latter. This data is stored in the object properties. When the object is destroyed, all data is destroied and must be instantiated again with a new SQL statement in the next page loaded (it´s a web app). But the schema information (column names, types, sizes, etc.) is cached.

    5. The performance is quite nice.

    Diego de Lima
      I think you might have been happy with Rose::DB::Object. It's a more complete and faster system than the others.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://536334]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-04-19 10:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found