PostgreSQL DBA
رفتن به کانال در Telegram
2 028
مشترکین
+224 ساعت
+27 روز
+530 روز
در حال بارگیری داده...
کانالهای مشابه
ابر برچسبها
اشارات ورودی و خروجی
---
---
---
---
---
---
جذب مشترکین
سپتامبر '26
سپتامبر '26
+15
در 0 کانالها
اوت '26
+17
در 0 کانالها
Get PRO
ژوئیه '26
+30
در 0 کانالها
Get PRO
ژوئن '26
+20
در 0 کانالها
Get PRO
مه '26
+14
در 0 کانالها
Get PRO
آوریل '26
+17
در 0 کانالها
Get PRO
مارس '26
+14
در 0 کانالها
Get PRO
فوریه '26
+15
در 0 کانالها
Get PRO
ژانویه '26
+23
در 0 کانالها
Get PRO
دسامبر '25
+17
در 0 کانالها
Get PRO
نوامبر '25
+37
در 0 کانالها
Get PRO
اکتبر '25
+34
در 0 کانالها
Get PRO
سپتامبر '25
+27
در 0 کانالها
Get PRO
اوت '25
+38
در 0 کانالها
Get PRO
ژوئیه '25
+31
در 0 کانالها
Get PRO
ژوئن '25
+26
در 0 کانالها
Get PRO
مه '25
+34
در 0 کانالها
Get PRO
آوریل '25
+34
در 0 کانالها
Get PRO
مارس '25
+42
در 0 کانالها
Get PRO
فوریه '25
+40
در 0 کانالها
Get PRO
ژانویه '25
+46
در 0 کانالها
Get PRO
دسامبر '24
+60
در 0 کانالها
Get PRO
نوامبر '24
+74
در 0 کانالها
Get PRO
اکتبر '24
+60
در 0 کانالها
Get PRO
سپتامبر '24
+82
در 0 کانالها
Get PRO
اوت '24
+1 752
در 0 کانالها
| تاریخ | رشد مشترکین | اشارات | کانالها | |
| 15 سپتامبر | +2 | |||
| 14 سپتامبر | 0 | |||
| 13 سپتامبر | +1 | |||
| 12 سپتامبر | 0 | |||
| 11 سپتامبر | +2 | |||
| 10 سپتامبر | +1 | |||
| 09 سپتامبر | 0 | |||
| 08 سپتامبر | +1 | |||
| 07 سپتامبر | +2 | |||
| 06 سپتامبر | 0 | |||
| 05 سپتامبر | 0 | |||
| 04 سپتامبر | 0 | |||
| 03 سپتامبر | +1 | |||
| 02 سپتامبر | +2 | |||
| 01 سپتامبر | +3 |
پستهای کانال
| 2 | Patroni is a widely used solution for managing PostgreSQL high availability. It provides a robust framework for automatic failover, cluster management, and operational simplicity in PostgreSQL environments.
https://www.cybertec-postgresql.com/en/patroni-cascading-replication-with-stanby-cluster/ | 341 |
| 3 | Cascading Replication
https://www.cybertec-postgresql.com/en/patroni-cascading-replication-with-stanby-cluster/ | 301 |
| 4 | https://stormatics.tech/blogs/the-1-gb-limit-that-breaks-pg_prewarm-at-scale | 247 |
| 5 | Schemas in PostgreSQL and Oracle: what is the difference?
https://www.cybertec-postgresql.com/en/schema-postgresql-oracle-difference/ | 260 |
| 6 | بدون متن... | 258 |
| 7 | بدون متن... | 375 |
| 8 | بدون متن... | 374 |
| 9 | بدون متن... | 360 |
| 10 | Configuration Parameters | 341 |
| 11 | CREATE TABLE orders (
order_id SERIAL PRIMARY KEY,
customer_id INTEGER,
order_date DATE,
order_total NUMERIC
) PARTITION BY RANGE (order_date);
CREATE TABLE orders_y2023 PARTITION OF orders
FOR VALUES FROM ('2023-01-01') TO ('2024-01-01');
CREATE TABLE orders_y2024 PARTITION OF orders
FOR VALUES FROM ('2024-01-01') TO ('2025-01-01');
-- Add an index to each partition
CREATE INDEX idx_orders_y2023_customer_id ON orders_y2023 (customer_id);
CREATE INDEX idx_orders_y2024_customer_id ON orders_y2024 (customer_id); | 270 |
| 12 | بدون متن... | 218 |
| 13 | بدون متن... | 222 |
| 14 | بدون متن... | 192 |
| 15 | Beyond indexing, several query optimization techniques can significantly improve performance. | 169 |
| 16 | Unused Indexes: Identify and remove unused indexes to reduce write overhead. The pg_stat_all_indexes view provides information about index usage. | 167 |
| 17 | Index Bloat: As data is inserted, updated, and deleted, indexes can become fragmented and bloated, leading to performance degradation. Rebuild indexes periodically using the REINDEX command. | 161 |
| 18 | Statistics: PostgreSQL relies on statistics to estimate the cost of different query plans. Inaccurate statistics can lead to suboptimal plan choices. Regularly update statistics using the ANALYZE command. | 166 |
| 19 | Partial indexes index only a subset of the table's rows, based on a condition. This can reduce index size and improve performance when queries frequently filter on that condition. | 172 |
| 20 | Composite indexes index multiple columns. The order of columns in a composite index is important. The most frequently used column in WHERE clauses should come first. | 170 |
