NanoMsg::Raw

码农软件 · 软件分类 · 高性能网络开发库 · 2019-09-01 15:58:33

软件介绍

NanoMsg::Raw 是 nanomsg 的 Perl 语言实现版本。

示例代码:

use NanoMsg::Raw;
 
my $sb = nn_socket(AF_SP, NN_PAIR);
nn_bind($sb, 'inproc://foo');
nn_send($sb, 'bar');
 
my $sc = nn_socket(AF_SP, NN_PAIR);
nn_connect($sc, 'inproc://foo');
nn_recv($sc, my $buf);
is $buf, 'bar';

本文地址:https://codercto.com/soft/d/13652.html

Ruby for Rails

Ruby for Rails

David Black / Manning Publications / 2006-05-11 / USD 44.95

What's Inside * How Ruby and Rails work, separately and together * Extensive Ruby language tutorial * Ruby techniques for Rails applications * Explore the Rails framework source code A new level of pr......一起来看看 《Ruby for Rails》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

随机密码生成器
随机密码生成器

多种字符组合密码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试