Opened 11 years ago

Closed 11 years ago

#19896 closed Bug (fixed)

Running `clear.cache()` using PostgreSQL does not remove rows

Reported by: George Song Owned by: nobody
Component: Core (Cache system) Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

If you use a PostgreSQL schema as your cache backend, then manually run cache.clear(), the rows still persist. This is due to the fact that the delete transaction is never committed.

Change History (3)

comment:1 by Jacob, 11 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Aymeric Augustin <aymeric.augustin@…>, 11 years ago

Resolution: fixed
Status: newclosed

In 44164c5c308da32a804dfb03ce0bffde2a6b4c56:

Fixed #19896 -- Committed after clearing cache in the database.

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