[TYPO3-typo3org] Manuals again

Elmar HInz elmar.hinz at team.MINUS.red.DOT.net
Fri Mar 16 12:17:18 CET 2007


Am Fri, 16 Mar 2007 09:53:56 +0100 schrieb Robert Lemke:

> Hi Elmar,
> 
> Am 16.03.2007 um 09:43 schrieb Elmar HInz:
> 
>> Guess, it's because the shortened page is in the cache. :-)
> 
> Yeah, good guess!
> 
>> Control that configuration of cache_pages.HTML is a (medium)blob.
> 
> I already changed that to blob during my debugging sessions ...
> 

Hi Robert,

BLOB is smaller than MEDIUMBLOB. 

Currently the output is 64 KB (65.535 bytes) that is MEDIUMBLOB size 

Seems you need to set LONGBLOB.

http://www.issociate.de/board/post/255224/Storable_Freeze/thaw_-_Size_Limits_-_65535_(?).html
http://dev.mysql.com/doc/refman/5.0/en/blob.html

TINYBLOB, TINYTEXT:
2^8 or 256 bytes
BLOB, TEXT:
2^16 or 65536 bytes (64 kiB)
MEDIUMBLOB, MEDIUMTEXT:
2^24 or 16777216 bytes (16 MiB)
LONGBLOB, LONGTEXT:
2^32 or 4294967296 bytes (4 GiB)

http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html

TINYBLOB, TINYTEXT 	L+1 byte, where L  < 28
BLOB, TEXT 	L+2 bytes, where L < 216
MEDIUMBLOB, MEDIUMTEXT 	L+3 bytes, where L < 224
LONGBLOB, LONGTEXT 	L+4 bytes, where L < 232


Regards

Elmar




More information about the TYPO3-team-typo3org mailing list