Transient / object cache maximum key length [duplicate]

Possible Duplicate:
Long option names fail silently?

The WordPress Transients API makes it easy to save expensive values and look them up later. If you install an object backend (such as APC object cache, memcache or W3 Total Cache) you can cache these values between requests, gaining even more.

But I’ve noticed that when the name of a transient field is too long, it simply doesn’t bother caching it. Aside from being somewhere in the region of 50 characters, I don’t know what the maximum length of these names is.

Is this documented somewhere? Does it depend on what backend you’re using?

1 Answer
1

A transient that doesn’t expire has a max name length of 53 characters yet a transient that does expire has a max name length of 45 characters.

http://core.trac.wordpress.org/ticket/15058

Leave a Comment