|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
采用DBaaS解决方案,他们也可以使用同大企业一样的技术。在大型组织中,DBaaS可以提供部门级解决MySQL学习教程,而无需IT部门和采购部门的介入,提供更快和更容易的方法来实现小型解决方案。懒得翻译了,粗心:
在有符合的索引的时分,Topn和setrowcountn是一样快的。可是关于一个无序堆来讲,topn更快。
道理本人看英文往。
Q.IsusingtheTOPNclausefasterthanusingSETROWCOUNTNtoreturnaspecificnumberofrowsfromaquery?
A.Withproperindexes,theTOPNclauseandSETROWCOUNTNstatementareequallyfast,butwithunsortedinputfromaheap,TOPNisfaster.Withunsortedinput,theTOPNoperatorusesasmallinternalsortedtemporarytableinwhichitreplacesonlythelastrow.Iftheinputisnearlysorted,theTOPNenginemustdeleteorinsertthelastrowonlyafewtimes.Nearlysortedmeansyouredealingwithaheapwithorderedinsertsfortheinitialpopulationandwithoutmanyupdates,deletes,forwardingpointers,andsoonafterward.
Anearlysortedheapismoreefficienttosortthansortingahugetable.InatestthatusedTOPNtosortatablewiththesamenumberofrowsbutwithunorderedinserts,TOPNwasnotasefficientanymore.Usually,theI/Otimeisthesamebothwithanindexandwithout;however,withoutanindexSQLServermustdoacompletetablescan.Processortimeandelapsedtimeshowtheefficiencyofthenearlysortedheap.TheI/OtimeisthesamebecauseSQLServermustreadalltherowseitherway.
据我的观察,现在有一个趋势,那些经过正式培训的数据库管理员DBA更倾向于选择一个专有关系数据库,例如Oracle。对于一些具有专门数据库管理员的比较大的环境来说,MySQL很难得到宠爱,这时候,关于MySQL是否真的具有良好的可扩展性的争论已经没有意义。 |
|