Submitted by akuma on 2012, December 10, 11:03 PM
好吧,我感觉又被xcache骗了。当然也可能是他们没注意吧。
在网站上,他们说:
修复版本. XCache admin 页面有大量改进, 增加 namespace 支持, 等等. 更新 API, 新增了一些 INI 设置. 新增 "诊断" 模块给出一些专家级建议 (htdocs 中). 进程异常时自动禁用缓存 (运行期间). 警告: 本版本开始使用 extension= 来加载 XCache. 不再支持采用 zend_extension= 方式加载.
再接着说上面的那句警告:本版本开始使用Extension那句
OK,当我装完的时候:
XML/HTML代码
- root@MyDebian64Bit:~/xcache-3.0.0# make install
- Installing shared extensions: /usr/lib/php5/20090626/
你看,成功了,但是看了一下xcache.ini。。。
XML/HTML代码
- [xcache-common]
- ;; install as zend extension (recommended), normally "$extension_dir/xcache.so"
- zend_extension = /usr/lib/php5/20090626/xcache.so
一下子就与说明不太一致了
PHP | 评论:0
| 阅读:13548
Submitted by akuma on 2012, December 10, 7:38 PM
本来觉得orca.io这个免费的cdn还是不错的,用了一个月也确实觉得还行。结果。。。怎么这么快就被墙了呢?我晕啊。。
可怜的v2ex,你做什么不被墙啊?
感慨一下。没有什么其他的想法。不过我已经想到一个cdn的地方了。黑黑
Tags: cdn
Misc | 评论:0
| 阅读:13085
Submitted by akuma on 2012, December 10, 6:22 PM
其实这篇文章的中文翻译真的好理解,所以我就不翻了啦。懒得翻译的人,可以直接看google translate页面:http://translate.google.com.hk/translate?act=url&hl=en&ie=UTF8&prev=_t&sl=auto&tl=zh-CN&u=http://pydanny.com/developer-time.html
OK,我下面贴的是原文:
This blog post got started with a tweet.
That tweet got retweeted a lot by developers. And system administrators. And database administrators. And any creative type.
As of December 7th, 2012, it had been retweeted over 500 times, a personal best. Obviously I struck a chord that resonated with a lot of people.
How do we fix it?
We can't.
I know this sounds depressing, but I'm being realistic. Here's some reasons that apply:
- Unless you are fortunate enough to be working on a solo effort, you are working with other developers/engineers/creatives. And if they can't ask you questions or inform you about critical stuff then you or they can waste hours.
- Meetings, short or long, online or in person, are a necessary part of any operation. If not with your boss or underlings, then with clients or users.
- Your boss/co-workers/underlings/kids/pets/parents don't get it that you can't be interrupted.
- As a freelancer, you can't be inaccessible to existing or potential clients.
No really, how do we fix it?
Doesn't matter how frequently you ask the the question (or rant about it), I don't believe this problem can be really solved. However, here are some possible mitigations:
1. Maker's Day
My friend, Craig Kerstiens describes how Heroku gives engineers a full day each week (Thursday) to focus on getting stuff done. No meetings, no standup, just 100% uninterrupted quiet time to focus on making stuff.
Suggest this at your company and see how it goes!
2. Blocks of Time
As of 2010, Eldarion broke up their work day into at least two sizable chunks of uninterrupted activity. Between the chunks you communicated with co-workers. The advantage of this approach is if you went down the wrong path or someone had a critical question, the period between chunks addressed this issue.
In theory this is how a lot of places work (lunch being the break). The reality is that the distractions often still pile in. For Eldarion it worked because everyone was remote.
3. New Desk Location
If working at an office, asked to be moved to a place with less foot traffic. The downside to this is you can end up in noisy, cold, dark places.
4. New Job
Switch to a new job that promises less distractions.
Maybe I'm wrong
I'm more than happy to be proven wrong.
Maybe there is a way to get 4-6 hours a day of uninterrupted maker's time every work day.
If you've got any ideas, let me know!
-------
没有什么正确的东西,无非就是你自己怎么选择。和你自己是怎么看待被打断的。
Misc | 评论:0
| 阅读:13212
Submitted by akuma on 2012, December 10, 9:21 AM
想不到,我的http://xiaocaipu.com还没有上线,我的微信功能却已经正常在运作了。
打开微信搜索好友,如果按帐号添加,就搜索:xiaocaipu,如果搜索公众帐号,就搜:小菜谱。当然,你懒的话,就扫描这个:
小LOGO是http://82982.com的小茗帮忙做的。。那一群设计师的朋友啊什么的,都说自己没空,我纠结啊。
不知道这个帐号是做什么的?那我得上好多图了。。。
先上两个简单的图吧
这些只是基础功能,还有相对比较高级一点的功能:
Tags: 小菜谱
PHP | 评论:0
| 阅读:13159
Submitted by akuma on 2012, December 8, 2:32 PM
pcntl在很久很久之前就听过了,但是一直没有尝试着真正要用它。这不,遇到socket问题了,看socket,遇到pcntl了,再看看吧。
这里是某个人的测试代码:
PHP代码
- <?php
-
-
-
-
-
-
-
-
- function new_child($func_name)
- {
- $args = func_get_args();
- unset($args[0]);
- $pid = pcntl_fork();
- if ($pid == 0) {
- function_exists($func_name) and exit(call_user_func_array($func_name, $args)) or exit(-1);
- }
- else if ($pid == -1) {
- echo "Couldn’t create child process .";
- }
- }
-
- function test($prefix, $num)
- {
- while ($i++ < $num) {
- echo $prefix . $i ."\n";
- }
- }
-
- new_child("test", "child process ", 100);
-
- test("parent process", 100);
-
- ?>
因为上面有作者有注释,所以我就不再多贴这篇文章的地址了。原网页的代码是错误的。我改了一下。原作者说的是:父进程输出50个左右时,子进程就开始运行了。我这边不是。我把数据改成1000后,发现父进程在950多的时候,子进程开始运行了。
当然,看手册也可以,对了,风雪之隅也写过类似的文章,http://www.laruence.com/2009/06/11/930.html,他提到的优点就是:
XML/HTML代码
- 优点:
- 1. 使用多进程, 子进程结束以后, 内核会负责回收资源
- 2. 使用多进程,子进程异常退出不会导致整个进程Thread退出. 父进程还有机会重建流程.
- 3. 一个常驻主进程, 只负责任务分发, 逻辑更清楚.
然后他的代码就与上面有点区别,不过说白了还是大同小异:
PHP代码
- #!/bin/env php
- <?php
-
-
-
-
-
-
-
-
-
- if (substr(php_sapi_name(), 0, 3) !== 'cli') {
- die("This Programe can only be run in CLI mode");
- }
-
-
- set_time_limit(0);
-
- $pid = posix_getpid();
- $user = posix_getlogin();
-
- echo <<<EOD
- USAGE: [command | expression]
- input php code to execute by fork a new process
- input quit to exit
-
- Shell Executor version 1.0.0 by laruence
- EOD;
-
- while (true) {
-
- $prompt = "\n{$user}$ ";
- $input = readline($prompt);
-
- readline_add_history($input);
- if ($input == 'quit') {
- break;
- }
- process_execute($input . ';');
- }
-
- exit(0);
-
- function process_execute($input) {
- $pid = pcntl_fork();
- if ($pid == 0) {
- $pid = posix_getpid();
- echo "* Process {$pid} was created, and Executed:\n\n";
- eval($input);
- exit;
- } else {
- $pid = pcntl_wait($status, WUNTRACED);
- if (pcntl_wifexited($status)) {
- echo "\n\n* Sub process: {$pid} exited with {$status}";
- }
- }
- }
做个笔记。
Tags: 多进程, pcntl
PHP | 评论:0
| 阅读:34973