From 22ec5350587ec50088c1263883ab5b4b3ca7c69d Mon Sep 17 00:00:00 2001 From: Ihar Hancharenka Date: Wed, 8 Jan 2025 14:07:30 +0300 Subject: [PATCH] m --- .../postgres/feature/performance/explain/presentations.txt | 7 ++++++- pl/cross/tools/ide/jetbrains/idea/idea-keys.txt | 2 ++ pl/java/libfws/spring/features/scheduling/scheduling.txt | 2 ++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/db/sql/postgres/feature/performance/explain/presentations.txt b/db/sql/postgres/feature/performance/explain/presentations.txt index 4f1e33cdd..cfb6c0876 100644 --- a/db/sql/postgres/feature/performance/explain/presentations.txt +++ b/db/sql/postgres/feature/performance/explain/presentations.txt @@ -1,6 +1,11 @@ 2023 -Tenzor - Backend School p4 - Query Analysis p2 0:00 of 1:40:59 +Tenzor - Backend School p4 - Query Analysis p2 10:00 of 1:40:59 https://www.youtube.com/watch?v=Rg7AAEso3z0 + ! 5:00 - Custom Scan () + ! Recheck Cond - ??? + ! 7:00 - Beatmap Heap Scan + ! exact ... lossy - not enough mem for gen full bitmap map + ! 10:00 - Append + Unique (Sort Key:) Tenzor - Backend School p4 - Query Analysis p1 9:00 of 1:24:11 https://www.youtube.com/watch?v=4g2CJv0jRk0 ! 3:00 - by default PG does not get hints regarding plans diff --git a/pl/cross/tools/ide/jetbrains/idea/idea-keys.txt b/pl/cross/tools/ide/jetbrains/idea/idea-keys.txt index 12122eb84..af9307cb6 100644 --- a/pl/cross/tools/ide/jetbrains/idea/idea-keys.txt +++ b/pl/cross/tools/ide/jetbrains/idea/idea-keys.txt @@ -132,6 +132,8 @@ F9 Debug/Resume C-A-F9 Force run to cursor +C-F2 + Stop NoButton Reset Frame diff --git a/pl/java/libfws/spring/features/scheduling/scheduling.txt b/pl/java/libfws/spring/features/scheduling/scheduling.txt index ed7fe3cb6..e4a0d921e 100644 --- a/pl/java/libfws/spring/features/scheduling/scheduling.txt +++ b/pl/java/libfws/spring/features/scheduling/scheduling.txt @@ -9,6 +9,8 @@ import org.springframework.scheduling.annotation.EnableScheduling; later... @Scheduled(initialDelay = ONE_SECOND, fixedDelay = ONE_MINUTE) +https://en.wikipedia.org/wiki/ISO_8601#Durations + @Scheduled(fixedDelay = ${interval}) 2021 https://reflectoring.io/spring-scheduler/