摘要: laravel5的路由支持缓存。需要执行以下命令: 执行完毕后,报出以下错误: 这个异常的错误信息,提示的已经非常明确了:大概意思就是说在闭包里边,是不能够进行路由缓存的。那么现在就有两种办法: ① 想要继续使用闭包,那就只能放弃路由缓存(至少目前我没有其他办法,如果你有,记得告诉我)。 ② 那就是 阅读全文
posted @ 2017-08-20 20:19 程序生(Codey) 阅读(1227) 评论(0) 推荐(0) 编辑
摘要: 官网地址:http://php.net/opcache 使用下列推荐设置来获得较好的 性能: opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=4000 opc 阅读全文
posted @ 2017-08-20 17:42 程序生(Codey) 阅读(266) 评论(0) 推荐(0) 编辑
摘要: php编译参数选项 PHP_INSTALL_PATH=/data/web/php MYSQL_INSTALL_PATH=/data/web/mysql ./configure --prefix=${PHP_INSTALL_PATH} --with-config-file-path=${PHP_INS 阅读全文
posted @ 2017-08-20 16:39 程序生(Codey) 阅读(875) 评论(0) 推荐(0) 编辑
摘要: PHP7和HHVM比较PHP7的在真实场景的性能确实已经和HHVM相当, 在一些场景甚至超过了HHVM。HHVM的运维复杂, 是多线程模型, 这就代表着如果一个线程导致crash了, 那么整个服务就挂了, 并且它不会自动重启。另外它采用JIT, 那么意味着, 重启以后要预热, 没有预热的情况下, 性 阅读全文
posted @ 2017-08-20 16:35 程序生(Codey) 阅读(11684) 评论(0) 推荐(0) 编辑
摘要: 问题描述:在VMware里克隆出来的CentOS Linux,开机执行命令:ifconfig...没有看到eth0网卡。然后重启网卡又报以下错误:Bringing up interface eth0: Device eth0 does not seem to be present,delaying 阅读全文
posted @ 2017-08-20 11:02 程序生(Codey) 阅读(1974) 评论(0) 推荐(0) 编辑
摘要: 1、修改php.ini,打开extension=php_sockets.dll 2、服务端程序SocketServer.php 3、客户端程序SocketClient.php 4、测试 运行服务端程序:C:\wamp\bin\php\php5.4.16\php.exe C:\wamp\www\Soc 阅读全文
posted @ 2017-08-20 00:14 程序生(Codey) 阅读(12612) 评论(0) 推荐(0) 编辑
摘要: 注意 1.在socket_bind的时候ip地址不能真回环地址如127.0.0.1 2.server.php后台跑起来的时候 nohup php server.php > /var/tmp/a.log 2>&1 & 一: udp 方式 1) server.php 2) client.php 一: T 阅读全文
posted @ 2017-08-20 00:05 程序生(Codey) 阅读(931) 评论(0) 推荐(0) 编辑