Opened 15 years ago

Closed 12 years ago

#11004 closed Bug (fixed)

cache.set should raise an exception when key is too long

Reported by: Erik Allik Owned by: elbarto
Component: Core (Cache system) Version: dev
Severity: Normal Keywords:
Cc: gerdemb Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

At least when using DB caching, the maximum allowed cache key length is 255 because the cache table is created that way. But when cache.set() is not currently aware of this and when caching a value using a key longer than 255 characters, a database error is thrown (which, at least in the case of Postgres, is not very clear about the reason).

Change History (7)

comment:1 by Russell Keith-Magee, 15 years ago

milestone: 1.1

comment:2 by Alex Gaynor, 15 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Julien Phalip, 13 years ago

Severity: Normal
Type: Bug

comment:4 by gerdemb, 13 years ago

Cc: gerdemb added
Easy pickings: unset
UI/UX: unset

comment:5 by gerdemb, 13 years ago

Not sure why my adding myself to the CC list also unset "UI/UX" and "Easy pickings". This bug does seem like pretty easy pickings though....

comment:6 by elbarto, 12 years ago

Owner: changed from nobody to elbarto

comment:7 by elbarto, 12 years ago

Resolution: fixed
Status: newclosed

This ticket is obsolete: this problem was solved in r13767.

Note: See TracTickets for help on using tickets.
Back to Top