Origami: A High-Performance Mergesort Framework
本文为摘录(或转载),侵删,原文为: attachments/pdf/c/p259-arman.pdf
1 ABSTRACT
Mergesort 优点:
- 不受数据倾斜影响
- 适于通过向量化执行来进行并行处理
- 适于多线程操作操作
Origami:
本文为摘录(或转载),侵删,原文为: attachments/pdf/c/p259-arman.pdf
Mergesort 优点:
Origami:
本文为摘录(或转载),侵删,原文为: -https://abseil.io/fast/21 -https://abseil.io/fast/9 -https://abseil.io/fast
– 可能的情况下编写清晰、惯用的代码
Prefer writing clear, idiomatic code whenever possible. It is not only easier to read
and debug, but in the long run, also easier for the compiler to optimize.
本文为摘录(或转载),侵删,原文为: https://github.com/pgaudit/pgaudit#readme
PostgreSQL 审计扩展(pgAudit)通过标准的 PostgreSQL 日志记录功能提供详细的会话和/或对象审计日志。
本文为摘录(或转载),侵删,原文为: ../pdf/d/p1311-even.pdf
What is a filter
属于近似查询 (approximate membership query), 用于判断独具是否在集合中。
本文为摘录(或转载),侵删,原文为: attachments/pdf/c/red_hat_enterprise_linux-7-performance_tuning_guide-en-us.pdf
本文为摘录(或转载),侵删,原文为: https://linuxopsys.com/topics/check-shared-memory-in-linux
Print active shared memory segments using -m option.
| |
where,
本文为摘录(或转载),侵删,原文为: https://www.cppstories.com/2023/initializer_list_improvements/
std::initializer_list 在使用中会转化成为常量对象的匿名局部数组:
| |
The above code is equivalent to the following:
本文为摘录(或转载),侵删,原文为: attachments/pdf/c/p3346-gong.pdf
本文为摘录(或转载),侵删,原文为: https://www.highgo.ca/2021/01/12/the-mapping-of-oid-and-relfilenode-in-pg/
A table in PostgreSQL has a relfilenode value, which specifies the file name of the table on disk (except foreign table and partition table). In general, this value can be found in the relfilenode field of the pg_class table, but there are some specific tables whose query result in the relfilenode field is 0. This blog will explore the kernel processing of these special tables relfilenode.