[TYPO3-dev] Typo3 Performance

Steffen Mu"ller steffen at mail.kommwiss.fu-berlin.de
Wed Feb 28 14:14:08 CET 2007


On 28.02.2007 13:57 Martin Kutschker wrote:
> Nicolas Cohen schrieb:
>>
>> I don't understand why do i need more RAM to get an  acceptable result.
> 
> More RAM on a server means more memory to cache various data. This can
> be used by the OS, Apache and Mysql (depending on configuration).
> 

Throwing in more memory will not automagically speed up everything.
Better search for the bottleneck.

Is your CPU too busy?
--> watch the ouput of "top" while requesting yout website

Do you have permanent slow queries, which burn your CPU?
--> log slow queries and use EXPLAIN to find out what is going on.

How effective is the query cache?
--> use mysqlreport or SHOW STATUS LIKE '%Qcache%'. The higher the ratio
between Qcache_hits and Qcache_inserts is, the more effective your query
cache works (e.g. 10:1 is good)

...

Which extensions do you use at all?

-- 
cheers,
Steffen




More information about the TYPO3-dev mailing list