- 论坛徽章:
- 0
|
linux_c_py_php 发表于 2012-09-25 17:33 ![]()
为什么php是用curl请求php worker呢, gearmand不是有开发接口吗, 你这个中途又走了什么中间代理吗
oh, 是这样,我这是一个计数器,类似文章点击率或者微博粉丝数目什么的,是提供 web serviec api的方式:
前端开发人员 功过 ajax,curl的get或者post方式传送数据给php脚本服务端,然后我在服务端脚本里接受参数
,我上代码吧!- class Hit extends CI_Controller {
- private $_data=array();
- private function _echo($msg="ok",$errno=1,$data=array()){
- $re = array();
- $re['msg']=$msg;
- $re['state']=$errno;
- $re['data']=$data;
- $this->re_json($this->_data['callback'],json_encode($re));
- exit;
- }
- private function re_json($callback,$json_re)
- {
- //__DEBUG__ AND $json_re="'".$json_re."'";
- $this->_data['fe_debug'] AND $json_re="'".$json_re."'";
- if($callback){
- echo $callback."(".$json_re.")";
- }else{
- echo $json_re;
- }
- }
- private function init(){
- $this->_data['callback']="";
- $this->_data['platform_name']="";
- $this->_data['platform_id']=0;
- $this->_data['object_id'] =0;
- $this->_data['event_id'] = 0;
- $this->_data['fe_debug']=0;
- }
- public function insert(){//new_click
- $this->init();
- isset($_REQUEST['callback']) AND $this->_data['callback']=$_REQUEST['callback'];
- isset($_REQUEST['debug']) AND $this->_data['fe_debug']=intval($_REQUEST['debug']);
- $data = array();
- isset($_REQUEST['callback']) AND $data= $this->input->get();
- $data OR $data = $this->input->post();
- $data OR $data = $this->uri->uri_to_assoc();
- $data = $this->check_data($data);
- $data_=array();
- $data_['platform_id']=$data['platform_id'];
- $data_['object_id']=$data['object_id'];
- $data_['event_id']=$data['event_id'];
- $this->in_queue($data_);
- }
- private function check_data($data){
- if(empty($data) OR !is_array($data)){
- $this->_echo("no any data","-400");
- }
- $event_id=0;
- $object_id=0;
- $platform_name="";
- extract($data);
- //isset($callback) AND $this->_data['callback']=$callback;
- isset($platform_name) AND $this->_data['platform_name']=$platform_name;
- isset($object_id) AND $this->_data['object_id']=intval($object_id);
- isset($event_id) AND $this->_data['event_id']=intval($event_id);
- if(!$this->_data['platform_name']){
- $this->_echo("platform_name is NULL",-5);
- }
- //print_r($event_id);
- global $g_platform_list,$g_event_list;
- if(!$platform_id=array_search($platform_name,$g_platform_list)){
- $this->_echo("platform_name error",-1);
- }
- if(!array_key_exists( intval($event_id),$g_event_list) ){
- $this->_echo("event_id error",-2);
- }
- if(!intval($object_id)){
- $this->_echo("object_id error",-3);
- }
- $this->_data['platform_id']=$platform_id;
- return $this->_data;
- }
- private function in_queue($data){
- global $g_gearman;
- $client = new GearmanClient();
- foreach($g_gearman as $key=>$v){
- $tmp_array = explode(":",$v);
- $client->addServer($tmp_array[0],$tmp_array[1]);
- }
- $str = json_encode($data);
- $client->doBackground("in_queue_now",$str);
- if($client->returnCode() != GEARMAN_SUCCESS){
- $this->_echo("gearman error",-500);
- }
- __DEBUG__ AND $this->_echo("ok",1,$data);
- __DEBUG__ OR $this->_echo("ok",1);
- }
- }
复制代码- private function in_queue($data){
- global $g_gearman;
- $client = new GearmanClient();
- foreach($g_gearman as $key=>$v){
- $tmp_array = explode(":",$v);
- $client->addServer($tmp_array[0],$tmp_array[1]);
- }
- $str = json_encode($data);
- $client->doBackground("in_queue_now",$str);
- if($client->returnCode() != GEARMAN_SUCCESS){
- $this->_echo("gearman error",-500);
- }
复制代码 look ::::
in_queue 这个私有成员方法里面加入geamand服务器然后 处理的,然后另外一台服务器在从消息队列里面取出数据插入mongo,谢谢跟进!
|
|