上一页 1 ··· 173 174 175 176 177 178 179 180 181 ··· 187 下一页
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION • The family concept: Introduced by IBM with its System/360 in 1964, fo 阅读全文
posted @ 2016-12-30 22:57 papering 阅读(207) 评论(0) 推荐(0)
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION 阅读全文
posted @ 2016-12-30 21:21 papering 阅读(134) 评论(0) 推荐(0)
摘要: http://support.minitab.com/en-us/minitab/17/topic-library/modeling-statistics/multivariate/principal-components-and-factor-analysis/what-is-pca/ http: 阅读全文
posted @ 2016-12-30 20:04 papering 阅读(244) 评论(0) 推荐(0)
摘要: https://dev.mysql.com/doc/refman/5.5/en/glossary.html#glos_buffer_pool buffer pool The memory area that holds cached InnoDB data for both tables and i 阅读全文
posted @ 2016-12-30 16:03 papering 阅读(174) 评论(0) 推荐(0)
摘要: http://highscalability.com/blog/2015/5/18/how-mysql-is-able-to-scale-to-200-million-qps-mysql-cluster.html 阅读全文
posted @ 2016-12-30 15:40 papering 阅读(140) 评论(0) 推荐(0)
摘要: https://gigaom.com/2011/12/06/facebook-shares-some-secrets-on-making-mysql-scale/ Facebook shares some secrets on making MySQL scale Derrick Harris De 阅读全文
posted @ 2016-12-30 15:34 papering 阅读(214) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/partitioning-limitations.html Performance considerations. Some effects of partitioning operations on performanc 阅读全文
posted @ 2016-12-30 15:19 papering 阅读(191) 评论(0) 推荐(0)
摘要: BIG TABLE 1-toSMALLtable @-toMEMORY 阅读全文
posted @ 2016-12-30 15:00 papering 阅读(117) 评论(0) 推荐(0)
摘要: DATABASE SYSTEM CONCEPTS, SIXTH EDITION11.1 Basic ConceptsAn index for a file in a database system works in much the same way as the indexin this textb 阅读全文
posted @ 2016-12-30 14:56 papering 阅读(177) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/create-table.html You can use the TEMPORARY keyword when creating a table. A TEMPORARY table is visible only to 阅读全文
posted @ 2016-12-30 14:46 papering 阅读(286) 评论(0) 推荐(0)
摘要: http://highscalability.com/blog/2010/11/4/facebook-at-13-million-queries-per-second-recommends-minimiz.html Thursday, November 4, 2010 at 8:48AM Faceb 阅读全文
posted @ 2016-12-30 14:27 papering 阅读(225) 评论(0) 推荐(0)
摘要: http://mathworld.wolfram.com/Variance.html Variance For a single variate having a distribution with known population mean , the population variance , 阅读全文
posted @ 2016-12-30 14:06 papering 阅读(422) 评论(0) 推荐(0)
摘要: Probability and Statistics > Moments > History and Terminology > Disciplinary Terminology > Biological Terminology > History and Terminology > Discipl 阅读全文
posted @ 2016-12-30 13:50 papering 阅读(248) 评论(0) 推荐(0)
摘要: 1 [SQL]DROP PROCEDURE IF EXISTS truncate_insert_sales_rank_toparow_week; 2 受影响的行: 0 3 时间: 0.001s 4 5 [SQL] 6 7 CREATE PROCEDURE truncate_insert_sales_rank_toparow_week () 8 BEGIN ... 阅读全文
posted @ 2016-12-30 12:16 papering 阅读(171) 评论(0) 推荐(0)
摘要: http://www.tocker.ca/categories/myisam Converting MyISAM to InnoDB and a lesson on variance I'm about to start working through converting a large MySQ 阅读全文
posted @ 2016-12-30 11:52 papering 阅读(172) 评论(0) 推荐(0)
摘要: MyISAM HASH restart-buffer 阅读全文
posted @ 2016-12-30 10:21 papering 阅读(209) 评论(0) 推荐(0)
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION 阅读全文
posted @ 2016-12-30 09:07 papering 阅读(213) 评论(0) 推荐(0)
摘要: Mathematical Thought From Ancient To Modern Times 阅读全文
posted @ 2016-12-29 23:25 papering 阅读(129) 评论(0) 推荐(0)
摘要: 总结: 1、 一个算法由控制结构(顺序、分支和循环3种)和原操作(指固有数据类型的操作)构成的,则算法时间取决于两者的综合效果。 2、 N*N矩阵乘法算法 时间复杂度T(n)=O(n^3) for(i=1;i<=n;i++) for(j=1;j<=n;j++) c[i][j]=0 for(k=1;k 阅读全文
posted @ 2016-12-29 19:54 papering 阅读(390) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/index-btree-hash.html Hash Index Characteristics Hash indexes have somewhat different characteristics from thos 阅读全文
posted @ 2016-12-29 19:16 papering 阅读(182) 评论(0) 推荐(0)
摘要: 小结 1、 mysql> INSERT INTO my_table (phone) VALUES (NULL); 有手机号但是不知道 mysql> INSERT INTO my_table (phone) VALUES ('');没有手机号 http://dev.mysql.com/doc/refm 阅读全文
posted @ 2016-12-29 19:06 papering 阅读(474) 评论(0) 推荐(0)
摘要: https://www.percona.com/blog/2006/06/09/why-mysql-could-be-slow-with-large-tables/ 阅读全文
posted @ 2016-12-29 18:56 papering 阅读(163) 评论(0) 推荐(0)
摘要: http://www-igm.univ-mlv.fr/~lecroq/string/node14.html Main features performs the comparisons from right to left; preprocessing phase in O(m+) time and 阅读全文
posted @ 2016-12-29 17:13 papering 阅读(383) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/index-btree-hash.html MySQL 5.7 Reference Manual / ... / Comparison of B-Tree and Hash Indexes 9.3.8 Comparison 阅读全文
posted @ 2016-12-29 17:02 papering 阅读(149) 评论(0) 推荐(0)
摘要: w-BIG TABLE USING BTREE >BETTER >USING HASH 阅读全文
posted @ 2016-12-29 15:59 papering 阅读(221) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/prepare.html Statement names are not case sensitive. preparable_stmt is either a string literal or a user varia 阅读全文
posted @ 2016-12-29 10:59 papering 阅读(147) 评论(0) 推荐(0)
摘要: https://googleblog.blogspot.com/2015/10/introducing-accelerated-mobile-pages.html October 7, 2015 October 7, 2015 Smartphones and tablets have revolut 阅读全文
posted @ 2016-12-29 09:55 papering 阅读(171) 评论(0) 推荐(0)
摘要: https://developers.google.com/search/docs/guides/intro-structured-data Structured data refers to kinds of data with a high level of organization, such 阅读全文
posted @ 2016-12-29 09:45 papering 阅读(220) 评论(0) 推荐(0)
摘要: https://static.googleusercontent.com/media/research.google.com/en//archive/bigtable-osdi06.pdf Abstract Bigtable is a distributed storage system for m 阅读全文
posted @ 2016-12-29 09:22 papering 阅读(242) 评论(0) 推荐(0)
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION 阅读全文
posted @ 2016-12-29 09:05 papering 阅读(142) 评论(0) 推荐(0)
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION 阅读全文
posted @ 2016-12-29 08:50 papering 阅读(233) 评论(0) 推荐(0)
摘要: SHOW VARIABLES LIKE '%version%'; https://dev.mysql.com/doc/refman/5.6/en/explain.html As of MySQL 5.6.3, permitted explainable statements for EXPLAIN  阅读全文
posted @ 2016-12-28 20:02 papering 阅读(225) 评论(0) 推荐(0)
摘要: https://en.wikipedia.org/wiki/Heterogeneous_System_Architecture Steps performed when offloading calculations to the GPU on a non-HSA system Steps perf 阅读全文
posted @ 2016-12-28 16:26 papering 阅读(195) 评论(0) 推荐(0)
摘要: http://developer.amd.com/resources/heterogeneous-computing/what-is-heterogeneous-computing/ Heterogeneous computing refers to systems that use more th 阅读全文
posted @ 2016-12-28 16:23 papering 阅读(215) 评论(0) 推荐(0)
摘要: ping(网络诊断工具)_百度百科 https://baike.baidu.com/item/ping/6235?fr=aladdin 在物理链路连通和路由设置正确的情况下,使用Ping命令仍然屏不通,可能有以下几个问题: (1)网线刚插到交换机上就Ping通网关,忽略了生成树的收敛时间。当然,较新 阅读全文
posted @ 2016-12-28 15:42 papering 阅读(425) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/sql-syntax-prepared-statements.html 阅读全文
posted @ 2016-12-28 14:17 papering 阅读(172) 评论(0) 推荐(0)
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION 阅读全文
posted @ 2016-12-28 13:19 papering 阅读(221) 评论(0) 推荐(0)
摘要: COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION Like sign magnitude, twos complement representation uses the most signi 阅读全文
posted @ 2016-12-27 23:24 papering 阅读(269) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/type-conversion.html MySQL 5.7 Reference Manual / Functions and Operators / Type Conversion in Expression Evalu 阅读全文
posted @ 2016-12-27 19:09 papering 阅读(223) 评论(0) 推荐(0)
摘要: http://dev.mysql.com/doc/refman/5.7/en/declare-local-variable.html http://dev.mysql.com/doc/refman/5.7/en/set-variable.html SET Syntax for Variable As 阅读全文
posted @ 2016-12-27 18:40 papering 阅读(180) 评论(0) 推荐(0)
上一页 1 ··· 173 174 175 176 177 178 179 180 181 ··· 187 下一页