2015年(55)
发布时间:2015-03-27 10:38:39
CentOS操作MySQL问题:1,出现了问题[root@rekfan mysql]# service mysql restartMySQL server PID file could not be found![失败]Starting MySQL...The server quit without updating PID file (/usr/local/mysql/data/rekfan.pid).[失败]我的解决方式:/usr/local/mysql/data/rek.........【阅读全文】
发布时间:2015-03-27 10:31:54
MySQL Replication:NySQL复制,MySQL的复制默认为异步工作模式mysql的复制功能是mysql内置的,装上它之后就具备了这个功能,而mysql复制是mysql实现大规模高性能应用的一个基本工具,是 mysql完成水平扩展的基本架构,为了能够应付更多的访问请求,通常情况下我们需要对服务器进行扩展,而扩展通常有两种方式:向上.........【阅读全文】
发布时间:2015-03-26 11:10:58
A dead-simple, yet extensible, C test framework.PhilosophyMost test frameworks for C require a lot of boilerplate code to set up tests and test suites -- you need to create a main, then register new test suites, then register the tests within these suits, and finally call the right functio.........【阅读全文】
发布时间:2015-03-26 11:06:39
我们team有一套C++写的server程序,最近发现它在每次退出的时候会崩溃,core dump文件的栈如下:(gdb) bt#0 0x0000003ea4e32925 in raise () from /lib64/libc.so.6#1 0x0000003ea4e34105 in abort () from /lib64/libc.so.6#2 0x0000003ea4e70837 in __l.........【阅读全文】
发布时间:2015-03-25 10:18:51
最简单的CI模型:注意:模型需要用到数据库配置文件在appcation/config.php这里我们要用到数据库,需要将databases.php中的相关参数填写一下,具体不再赘述。直接进入主题:MVC:1、首先谈“M” 模型 CI中的模型存放在application/models文件夹里命名规则是:类名_model.ph.........【阅读全文】