码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
网站瓶颈分析—MYSQL性能分析
一、关于慢查询设置和分析查找慢查询参数mysql> show variables like 'long%';+-----------------+----------+| Variable_name | Value |+-----------------+----------+| long...
分类:数据库   时间:2015-01-21 23:47:48    阅读次数:237
how to add variable in blade template?
question? I'm reading Laravel Blade's templating docs and I can't find how I can assign variables inside a template for use later in the template. I c...
分类:其他好文   时间:2015-01-19 12:17:28    阅读次数:142
python --help
python --help usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ... Options and arguments (and corresponding environment variables): -B : ...
分类:编程语言   时间:2015-01-18 11:47:30    阅读次数:169
mysql中文乱码配置
首先进入查看自己的编码,dos进入mysql后使用show variables like "character_set_%";显示为 然后在mysql的安装目录下找到my.ini文件,修改下面两处的编码 重启服务,后再用show variables like "character_set_%";发现改了好多处。 在sqlyog中发现已经显示正常了...
分类:数据库   时间:2015-01-18 09:22:59    阅读次数:192
MySQL binlog日志优化
mysql中日志类型有慢查询日志,二进制日志,错误日志,默认情况下,系统只打开错误日志,因为开启日志会产生较大的IO性能消耗。一般情况下,生成系统中很少打开二进制日志(bin log),bin log日志的优化策略:mysql> show variables like '%binlog%';+---...
分类:数据库   时间:2015-01-16 18:38:26    阅读次数:263
项目部署文档--数据库导入,tomcat配置
常用操作 查看mysql编码格式:show variables like 'character%'; 编码格式的修改:需要在MySQL安装目录下对my.ini文件修改utf8 导入数据库sql:mysql -u root -p123456 test Tomcat在其他位置配置工作目录 ①在webapps目录外任何你需要的地方(如E盘根目录)新建自己的程序目录myjsp。 ...
分类:数据库   时间:2015-01-16 16:55:51    阅读次数:317
查看mysql数据库的数据引擎
1,SHOW VARIABLES LIKE'storage_engine';2,show table status from 数据库库名 where name='表名',例:mysql> SHOW TABLE STATUS from mytest where Name='test';3,SHOW E...
分类:数据库   时间:2015-01-14 12:19:42    阅读次数:180
更改Eclipse里的Classpath Variables M2_REPO
M2_REPO这个classpath variable 是不能改变的。为什么 Eclipse 里的 Classpath Variables M2_REPO 无法修改(non modifiable),并且指向 User Home 里的一个位置,如下图:最后在下图里找到答案:原来 Eclipse 里的 ...
分类:系统相关   时间:2015-01-13 00:06:04    阅读次数:383
JavaScript 小记 之 闭包(Closures)
Closuresarefunctionsthatrefertoindependent(free)variables.闭包是以静态方式/词法方式进行存储所有父作用域的一个函数在JavaScript高级程序设计里面通过一个createComparisonFunction()函数和这个函数的作用域链之间的...
分类:编程语言   时间:2015-01-12 20:57:34    阅读次数:457
CUDA系列学习(二)CUDA memory & variables
(一)、CPU Memory 结构CPU提速主要依靠局部性原理,即时间局部性和空间局部性。我们先看一下CPU的内存结构:Data Access先复习一下数据在这几级存储中的传输。作为数据transfer的基本单位,cache line的典型大小为8*8(8个变量,每个8bytes)=64bytes. 当一个cache想要load数据到寄存器时,检查cache中的line,如果hit了就get到数据...
分类:其他好文   时间:2015-01-12 00:27:23    阅读次数:443
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!