码迷,mamicode.com
首页 >  
搜索关键字:nginx php mysql wordpress    ( 188847个结果
PHP5 session 详解
http协议是WEB服务器与客户端(浏览器)相互通信的协议,它是一种无状态协议。所谓无状态,指的是不会维护http请求数据,http请求是独立的,非持久的。而越来越复杂的WEB应用,需要保存一些用户状态信息。这时候,Session这种方案应需而生。PHP从4.1开始支持Session管理。sessi...
分类:Web程序   时间:2014-04-29 17:09:19    阅读次数:710
PHP 单例
1 sign=mt_rand(1,100000);12 }13 14 final protected function __clone(){15 16 }17 18 protected static function getIns(){19 if(!...
分类:Web程序   时间:2014-04-29 16:30:19    阅读次数:415
MySQL性能优化的21个最佳实践
今天,数据库的操作越来越成为整个应用的性能瓶颈了,这点对于Web应用尤其明显。关于数据库的性能,这并不只是DBA才需要担心的事,而这更是我们程序员需要去关注的事情。当我们去设计数据库表结构,对操作数据库时(尤其是查表时的SQL语句),我们都需要注意数据操作的性能。这里,我们不会讲过多的SQL语句的优...
分类:数据库   时间:2014-04-29 16:20:58    阅读次数:653
php连接到数据库操作
要写的内容代码,比如说Html可以在html中添加数据提交到数据库中,前提要和数据库中名字信息一致表单提交: ....... 这是一部分提交表单中的数据的代码,其中包含有链接到数据库的 添加信息 "; echo "姓名:".$name."";...
分类:数据库   时间:2014-04-29 15:35:54    阅读次数:582
MySQL死锁[转]
案例描述 在定时脚本运行过程中,发现当备份表格的sql语句与删除该表部分数据的sql语句同时运行时,mysql会检测出死锁,并打印出日志。两个sql语句如下: (1)insert into backup_table select * fromsource_table (2)DELETE FROM s...
分类:数据库   时间:2014-04-29 15:28:42    阅读次数:775
MySQL : interactive_timeout v/s wait_timeout
Most of the database intensive applications are worring about the default values of these variables obviously. Developers used to inform me that they ...
分类:数据库   时间:2014-04-29 15:26:38    阅读次数:739
生产环境中的PHP WEB 简单架构
使用三台虚拟机器, Ubuntu1(nginx) 192.168.226.128 Ubuntu2(php-fpm+memcached)192.168.226.132 CentOS(MySQL)192.169.226.130PHP 框架使用CakePHP,这个是很常用的MVC 框架,基于事件的分...
分类:Web程序   时间:2014-04-29 15:24:41    阅读次数:477
PHP和JSON的一些事
这里已经说得很仔细了http://www.ruanyifeng.com/blog/2011/01/json_in_php.html
分类:Web程序   时间:2014-04-29 14:31:16    阅读次数:442
Using MySQL Connector .NET 6.6.4 with Entity Framework 5
I had been waiting for the latest MySQL connector for .NET to come out so I can move on to the new and sleek Visual Studio 2012 for my projects. Found...
分类:数据库   时间:2014-04-29 14:17:54    阅读次数:753
EF MySql 配置文件
1 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 ...
分类:数据库   时间:2014-04-29 14:13:53    阅读次数:669
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!