view MySQL/Plugins/GetLastChangeIndex.sql @ 595:272eeb046a88 find-refactoring

Introduced a new ChildCount table in PG to improve retrieval of NumberOfRelatedStudyInstances and other similar tags that could consume up to 95% of a request time + added a DB-Housekeeper thread to populate the new table
author Alain Mazy <am@orthanc.team>
date Tue, 26 Nov 2024 17:59:14 +0100
parents 740d9829f52e
children
line wrap: on
line source

CREATE TABLE IF NOT EXISTS GlobalIntegers(
       property INTEGER PRIMARY KEY,
       value BIGINT
       );


DELETE FROM GlobalIntegers WHERE property = 0;

INSERT INTO GlobalIntegers
SELECT 0, COALESCE(MAX(seq), 0) FROM Changes;


DROP TRIGGER IF EXISTS ChangeAdded;

CREATE TRIGGER ChangeAdded
AFTER INSERT ON Changes
FOR EACH ROW
BEGIN
  UPDATE GlobalIntegers SET value = new.seq WHERE property = 0@
END;