码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
mysql查找sql耗时瓶颈 show profiles
1、首先查看是否开启profiling功能SHOW VARIABLES LIKE '%pro%'; 或者SELECT @@profiling; 2、开启profilingSET profiling=1; 3、执行sql语句例如:SELECT table_schema AS 'Db Name'...
分类:数据库   时间:2015-02-24 18:37:35    阅读次数:155
Hybird框架UI重构之路:四、分而治之
上文回顾:Hybird框架UI重构之路:三、工欲善其事,必先利其器上一篇文章有说到less、grunt这两个工具,是为了css、js分模块使用的。UI框架提供给使用者的时候,是一个大的xxx.js、xxx.css,但在开发时候,必须划分模块。CSS模块划分1.variables.less这里面是一些...
分类:其他好文   时间:2015-02-21 23:24:03    阅读次数:299
分类Category的使用
声明方法在分类的接口中,只允许新增方法,不能新增变量。其语法格式如下:@interface 类名(分类名) 新增方法声明;@end如有在分类中定义变量,将出现错误"Instance variables may not be placed in categories"定义方法在分类的实现文件中,对新....
分类:其他好文   时间:2015-02-14 16:08:52    阅读次数:134
MySQL编码设置
mysql> SHOW VARIABLES LIKE 'character_set_%'; +--------------------------+----------------------------+ | Variable_name | Value | +-------------------...
分类:数据库   时间:2015-02-13 21:10:18    阅读次数:207
Codecademy python
#1print "Welcome to Python!"#2my_variable = 10#3# Set the variables to the values listed in the instructions!my_int = 7my_float = 1.23my_bool = True#4...
分类:编程语言   时间:2015-02-13 19:55:24    阅读次数:639
InnoDB的重做日志刷新策略对插入速度的影响
核心控制参数 InnoDB存储引擎通过innodb_flush_log_at_trx_commit参数控制重做日志刷新到磁盘的策略 查看参数值:show variables like 'innodb_flush_log_at_trx_commit'; 修改参数值:set GLOBAL inno...
分类:数据库   时间:2015-02-12 22:43:05    阅读次数:241
Magento安装时数据库不支持InnoDB存储引擎问题的解决
找到文件app/code/core/Mage/Install/Model/Installer/Db/Mysql4.php的第59行: 将 public?function?supportEngine() { ????$variables??=?$this->_getConnection() ????????->fetchPairs(‘SHO...
分类:数据库   时间:2015-02-06 00:53:27    阅读次数:235
Machine Learning - IV. Linear Regression with Multiple Variables (Week 2)
机器学习Machine Learning - Andrew NG courses学习笔记 linear regression works with multiple variables or with multiple features多变量线性规划 Multiple Features多变量 Gradient Descent for Multiple...
分类:系统相关   时间:2015-02-05 18:31:27    阅读次数:237
MySQL Packets larger than max_allowed_packet are not allowed
MySQL Packets larger than max_allowed_packet are not allowedMySQL的一个系统参数:max_allowed_packet,其默认值为1048576(1M), 查询:show VARIABLES like '%max_allowed_pac...
分类:数据库   时间:2015-02-03 10:50:52    阅读次数:381
Variables and Arithmetic Expression
Notes from The C Programming LanguageA decimal point in a constant indicates that it is floating point, however, so $5.0/9.0$ i not truncated because ...
分类:其他好文   时间:2015-02-02 21:26:20    阅读次数:156
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!