php-nsq icon indicating copy to clipboard operation
php-nsq copied to clipboard

a php nsq client write by c extension,the fastest nsq client

Results 12 php-nsq issues
Sort by recently updated
recently updated
newest added

NSQ服务与PHP在同一台机器,PUSH一条消息耗时11ms,感觉有点慢了。耗时11ms是属于正常范围吗?

如果需要消息重新消费的话 现在只有一个方法 throw new Exception("") 这个异常因为是 异步的 在代码外还没有办法拦截 这是就会打印到日志文件中,这样老感觉到程序有错误,同时错误日志文件也会增长得比较快 如果能有一个针对消息的 requeue 方法 延迟多少秒 就可以了 我在C源码里面确实找到了 nsq_requeue 方法 但是调用起来没有作用

I am attaching a link to the problem and description https://github.com/yunnian/php-nsq/issues/56 ```sh child process pids 2782 be terminated, trying reload last all pid: 2782 child process pids 2783 be terminated,...

按照nsq的文档,subscribe的时候如果没有对应topic,则会直接生成subscribe设置的topic,希望改进

Hi Great tool. However I am experincing crashes in Debian 9. I have installed it with these steps: - curl -L https://github.com/yunnian/php-nsq/archive/3.5.0.tar.gz -o 3.5.0.tar.gz - tar xvzf 3.5.0.tar.gz - cd...

- [go-nsq](https://github.com/nsqio/go-nsq/blob/61f49c096d0d767be61e4de06f724e1cb5fd85d7/conn.go) - [pynsq](https://github.com/nsqio/pynsq/blob/48bf62d65ea63cddaa401efb23187b95511dbc84/nsq/conn.py) 客户端尚未实现TCP协议[AUTH命令](https://nsq.io/clients/tcp_protocol_spec.html#auth) 1. 先发送IDENTIFY 2. 如response AuthRequired为true,需发送AUTH

如果有使用的,请大家把公司名字列一下,支持下

作者你好,我看到有touch方法,具体怎么用,有点看不懂,求教下 //$msg->touch($bev,$msg->message_id); //if you callback run long time ,you can use this function

比如报这个错误的时候 The topic 'test' has not produced on any nsqd in the cluster but are present in the lookup data. The program will be retried after 10 seconds . 内容肉眼可见增长。。。

由于PHP的特性,每个请求都会connectNsqd,请问此时是扩展接管TCP连接池还是每次都会重新创建一个TCP链接,所以每次请求结束,都需要在__destrct函数中close NSQ链接避免NSQ连接数爆掉? 扩展在publish的时候属于那种情况?希望能帮忙解答,谢谢!