English 中文(简体)
研究MySQL,QL, 来源代码,以了解RDBMS的实施情况[封闭]
原标题:Studying MySQL, SQLite source code to learn about RDBMS implementation [closed]

我们不准许对书籍、工具、软件图书馆以及更多的图书馆征求建议的问题。 你可以ed问这个问题,以便用事实和引言回答。

Closed 7 years ago.

我知道,执行数据库是一个庞大的议题,但我想通过调查数据库的源代码,基本了解数据库系统是如何运作的(例如,记忆管理、双平树、交易、q平、多读、分立等)。

由于有一些已经证明非常可靠的开放源数据库,如我的sql、qlite等。 然而,该守则非常复杂,我没有开始的cl。 我还发现,旧的学校数据库教科书只是解释理论,而不是执行细节。

谁能建议我应如何开始,是否有任何书本强调现代数据库行业使用的制造 d的技术和技术?

最佳回答

我对像一个贪 gr的老学者一样感到仇恨,但如果你决心建设自己的RDBMS,理论确实是你需要研究的。 执行细节确实是公正的,即执行细节。 除教科书外,你还可能希望研究论文,这些研究文件往往更详尽地涉及这一问题。

当你开始使用你的数据库引擎时,你可以研究现有的开放源执行,但确实期望学习曲线会 steep。 你已经发现,这些项目往往非常复杂。 当你向这些项目提出具体问题时,试图将其张贴在相关的邮寄名单上。 当你对自己的执行情况提出具体问题时,请问:

问题回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签