84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
Mysql
所有的用户的邮箱都存在这Mysql
PHP
读取用户邮箱 生成发送内容
Redis
怎么用这个东西做队列 不懂?
业精于勤,荒于嬉;行成于思,毁于随。
http://segmentfault.com/q/1010000002518573/a-1020000002518892
// 给$id设置需要的信息,譬如邮件地址、内容 $this->_redis->hMset($id, $struct); // push到名为'queue'的队列 $this->_redis->lPush('queue', $id); while (true) { // 读取一个队列任务 $task = $redis->brPop('queue', 10); // 获取队列任务的信息 if ($task) { list ($name, $id) = $task; } // 调用邮件服务代码 }
你可能需要php redis文档https://github.com/phpredis/phpredis
http://segmentfault.com/q/1010000002518573/a-1020000002518892
你可能需要php redis文档https://github.com/phpredis/phpredis