ruby-pg-extras 5.6.4 → 5.6.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ruby_pg_extras/diagnose_data.rb +2 -2
- data/lib/ruby_pg_extras/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a20be6fee27876d0c8e5b9f991cc6d24cf8e82b82712a26a7ef378ddf806f58
|
4
|
+
data.tar.gz: 43056660e20b65d08376094e02915f68ac4c8774a1048b45d64559250395e91a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d5aa923aca82712abe8d39bda0b909eb16ab3a8cfca8d51c15c582065238fa7a9fa4cb798d2a6ef363ed6a10d24a7cc331f8008d9ee8b3e205804e4b7aa6920
|
7
|
+
data.tar.gz: dc6b252194afb5830d67ca695ce5da920cda0cf82cd41c2281658aeb279643f8382e8d31d32d3759f07f5ceb9dd6ffe159329bd54e09a6605ca6a10f878ce45a
|
@@ -72,7 +72,7 @@ module RubyPgExtras
|
|
72
72
|
if value == "4096" && unit == "kB"
|
73
73
|
{
|
74
74
|
ok: false,
|
75
|
-
message: "
|
75
|
+
message: "The db is using the default 'work_mem' value of '#{value}#{unit}'. This value is often too low for modern hardware and can result in suboptimal query plans. Visit https://pgtune.leopard.in.ua/ to find the correct value for your database.",
|
76
76
|
}
|
77
77
|
else
|
78
78
|
{
|
@@ -94,7 +94,7 @@ module RubyPgExtras
|
|
94
94
|
if value == "4"
|
95
95
|
{
|
96
96
|
ok: false,
|
97
|
-
message: "
|
97
|
+
message: "The db is using the default 'random_page_cost' value of '4'. This value is often too low for modern hardware and can result in suboptimal indexes utilization. Consider setting it to '1.1'. See https://pgtune.leopard.in.ua/ for more information.",
|
98
98
|
}
|
99
99
|
else
|
100
100
|
{
|