Apache Compress Antlib 1.1 发布 资讯

Commons Compress 1.3 发布了,该版本增加对 pack200 的支持,支持 Unix 的 dump 格式的只读处理,透明的对zip64扩展的支持,同时该版本也是 Compress 1.3 首次要求

openkk 2011-11-05   7975   0
Apache   Java  

分布式数据库,RethinkDB 2.2.1 发布 资讯

queries ( #5085 ) rethinkdb export and rethinkdb dump now limit the number of subprocesses to reduce memory

jopen 2015-11-23   4858   0

PHP编写的JSON RPC库:jsonrpc 经验

echo $response->getError()->error(); } else { var_dump($response->getResult()); } } 项目主页: http://www

jopen 2013-05-19   30522   0

hadoop HDFS 的PHP扩展:phdfs 经验

$obj->write("/a/b/c/test2.txt","test",O_WRONLY|O_APPEND); var_dump($log); echo $obj->rename("/a/b/c/test2.txt","/a/b/c/test3

jopen 2014-08-02   43024   0

分析C/C++源代码中函数调用关系的开源工具:CodeViz 经验

打个补丁(如果你的gcc版本不符合它的要求还得先下载正确的gcc版本),让它在编译每个源文件时 dump 出其中函数的 call graph,然后用 Perl 脚本收集并整理调用关系,转交给 Graphviz

jopen 2014-08-22   78099   0

iptables 使用教程 代码段

1.使用netstat -tu -c >dump.txt 通过分析得出主机链接的信息。 禁止主机访问外网的指定ip地址: iptables -A OUTPUT -d 178.236.155.251 -j

p4cf 2015-11-29   4312   0

SQLite数据库管理工具:DB Browser for SQLite 经验

CSV files Import and export databases from/to SQL dump files Issue SQL queries and inspect the results

jopen 2014-11-30   74284   0

文件压缩/解压缩包 Apache Commons Compress 1.3 发布 资讯

Commons Compress 1.3 发布了,该版本增加对 pack200 的支持,支持 Unix 的 dump 格式的只读处理,透明的对zip64扩展的支持,同时该版本也是 Compress 1.3 首次要求

jopen 2011-11-02   14986   0
Java  

Linux 系统审计工具,Lynis 2.0.0 发布 资讯

使用更多的实用新技术:systemd,Docker,nftables 等 * Lynis 企业化 * 新参数和选项 --dump-options (see all options) --report-file (define

jopen 2015-02-28   5040   0
Lynis  

开源数据库,ArangoDB 2.6.5 发布 资讯

Previously theindexBuckets attribute value from the dump was ignored, and the server default value forindexBuckets was

jopen 2015-08-24   6485   0

CmlPHP V2.5.11 发布,PHP 开源框架 资讯

命令行工具调度接口支持传参到插件 添加守护工作进程 更新Json View 在debug=false时,dump会将debug数据加到响应的cml_debug_info字段 主要特性: CmlPHP 基于php5

jopen 2016-02-08   5631   0

php字符串去掉中文 代码段

$result = preg_replace('/([\x80-\xff]*)/i','',$a); var_dump($result); [PHP]代码

yjcown 2016-01-30   952   0
PHP  

Python的JSON解析库:Simplejson 经验

compat import StringIO >>> io = StringIO() >>> json.dump(['streaming API'], io) >>> io.getvalue() '["streaming

jopen 2014-07-01   35091   0

基于 PHP 的 web 开发微框架:Slim 经验

直接看一段代码吧: $app->get('/', function () use ($app) { var_dump($app); }); 是不是有点像jQuery?事实上,Slim的作者是PHP和JavaScript程序员,同时也是《PHP

g6d7 2015-01-04   17036   0
Slim   Web框架  
P34

  redis运维手册v1.2 文档

保存继续工作后,redis就允许写了。 rdbcompression yes #默认值yes,当dump数据库时使用LZF压缩字符串对象,节省磁盘消耗CPU,如果CPU资源比较紧张,可以设置为no,选择不压缩;  

anan2016 2016-12-05   1143   0
P11

  配置Storm的开发环境 文档

1 Storm的开发环境所必需的软件 软件 下载地址 推荐版本 JDK http://www.oracle.com/technetwork/java/javase/downloads/index.html

wudawen 2015-09-10   2659   0
P26

  Mysql 优化笔记 文档

只有数据库是关系型数据库(mysql/oracle/db2/informix/sysbase/sql server),就自动的满足1NF ☞ 数据库的分类 关系型数据库: mysql/oracle/db2/informix/sysbase/sql

hello12345 2013-11-24   391   0

MySQL的复制原理及配置 经验

服务器上SHOW PROCESSLIST的输出中的Binlog Dump线程。 从服务器I/O线程读取主服务器Binlog Dump线程发送的内容并将该数据拷贝到从服务器数据目录中的本地文件中,即中继日志。

jopen 2012-07-03   31272   0

介绍Python的魔术方法 - Magic Method 经验

78), } print 'before dump:', data with open('data.pkl', 'wb') as jar: pickle.dump(data, jar) # 将数据存储在文件中

FraHassell 2016-10-24   8985   0

为什么人人都该懂点LLVM 经验

PI文档——反正我没找到其他的好方法。 《语言参考手册》 也非常有用,如果你曾被LLVM IR dump里面的语法搞糊涂的话。 《开发者手册》 描述了一些LLVM特有的数据结构的工具,比如高效字符串,

jopen 2015-08-24   21208   0
LLVM   Linux  
1 2 3 4 5 6 7 8 9 10