📄 intro.so
字号:
m4_comment([$Id: intro.so,v 10.25 2004/09/17 19:51:50 bostic Exp $])m4_ref_title(Access Methods, What are the available access methods?, introduction to the @access methods, intro/products, am_conf/select)m4_p([dnlm4_db currently offers four access methods: Btree, Hash, Queue and Recno.])m4_section(Btree)m4_p([dnlThe Btree access method is an implementation of a sorted, balanced treestructure. Searches, insertions, and deletions in the tree all take O(logbase_b N) time, where base_b is the average number of keys per page, andN is the total number of keys stored. Often, inserting ordered data intoBtree implementations results in pages that are only half-full. m4_dbmakes ordered (or inverse ordered) insertion the best case, resulting innearly full-page space utilization.])m4_section(Hash)m4_p([dnlThe Hash access method data structure is an implementation of ExtendedLinear Hashing, as described in "Linear Hashing: A New Tool for File andTable Addressing", Witold Litwin, m4_italic([Proceedings of the 6thInternational Conference on Very Large Databases (VLDB)]), 1980.])m4_section(Queue)m4_p([dnlThe Queue access method stores fixed-length records with logical recordnumbers as keys. It is designed for fast inserts at the tail and has aspecial cursor consume operation that deletes and returns a record fromthe head of the queue. The Queue access method uses record level locking.])m4_section(Recno)m4_p([dnlThe Recno access method stores both fixed and variable-length records withlogical record numbers as keys, optionally backed by a flat text (bytestream) file.])m4_page_footer
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -