`
zhangcs053
  • 浏览: 33103 次
  • 性别: Icon_minigender_1
  • 来自: 徐州
社区版块
存档分类
最新评论
文章列表
在使用scannerWithStop方法时遇到一个问题,代码如下: $tableName = "table"; $beginRow = 0000001; $endRow = 0000003; $column = "column:"; $scanner = $hbaseClient -> scannerWithStop($tableName,$beginRow,$endRow,$column); 当获取数据条目小于等于3时,获取数据条目是正确的,也就是说$endRow <= 0000003时获取数据条目是正确的,但是当$endRo ...
php可以通过thrift连接hbase,同样php可以通过thrift读取hadoop资源(HDFS资源)。 准备: php需要thrift的libary packages:hadoop-0.20.2\src\contrib\thriftfs\gen-php 源码: <?php $GLOBALS['THRIFT_ROOT'] = ROOTPATH . '/lib/thrift'; require_once($GLOBALS['THRIFT_ROOT'].'/Thrift.php'); require_once($GLOBALS['THRIFT_ROOT'].'/trans ...
在centos上安装tokyocabinet-1.4.47,报错: LD_RUN_PATH=/lib:/usr/lib:/usr/local/tokyocabinet-1.4.47/lib:/root/lib:/usr/local/lib:/usr/local/tokyocabinet-1.4.47/lib:. gcc -g -O2 -std=c99 -Wall -fPIC -fsigned-char -O2 -o tcutest tcutest.o -L. -L/usr/local/tokyocabinet-1.4.47/lib -L/root/lib -L/usr/local/lib  -l ...

httpsqs学习笔记

    博客分类:
  • http
在windows上安装httpsqs: httpsqs官方网站:http://code.google.com/p/httpsqs/ 参考blog:http://blog.s135.com/httpsqs/ 安装tokyocabinet-1.4.47.tar.gz时,提示: tcutest.c:31: error: conflicting types for ‘iprintf’ \cygwin\usr\include/stdio.h:259: error: previous declaration of ‘iprintf’ was here 修改iprintf为_iprintf static vo ...
推荐这篇文章:http://vladimirbarbarosh.blogspot.com/2011/05/compile-php-536-pecl-libevent-004.html 为了方便大家阅读,将内容转载给大家,不过还是鼓励去看原创博文。 Compile php-5.3.6 + pecl-libevent-0.0.4 + libevent-2.0.11-stable Yesterday a friend of mine ask me to compile libevent PHP extension for Windows. It takes me about a whole day t ...
在windows上使用pear安装php扩展 相关网站: http://www.php.net http://pear.php.net http://pear2.php.net http://pecl.php.net pear2需要使用sqlite3 执行命令: 1、php D:\php\php5.3.5\pyrus.phar install D:\php\php5.3.5\ext\libevent-0.0.4.tgz Pyrus version 2.0.0a3 SHA-1: BE7EA9D171AE3873F1BBAF692EEE9165BB14BD5D Using PEAR installa ...
今天在CentOS上安装了apache,php,mysql但之后运行apache出现了问题,问题描述如下: 当文件较大时,mime-type则为application/octet-stream,详细情况可见下图: apache安装:./configure --prefix=/lamp/local/apache2 --enable-so --enable-mods-shared=all --enable-rewrite --enable-cache 希望能找到解决问题的方法。
先将代码给出,以后整理。 {name:'isopen', index:'isopen', width:55, edittype:"checkbox",editoptions: {value:"1:0"}, editable:true, formatter:"customIsOpen"}, jQuery.extend($.fn.fmatter , {     customIsOpen : function(cellvalue, options, rowobject) {         if(cellvalue == 1) retu ...
android传感器 手机的XYZ坐标,把你的手机平放到桌子上,横x,纵y,然后z就是屏幕法线。 加速(accelerometer):x轴加速,y轴加速,z轴加速 磁场(magnetic):x轴磁场,y轴磁场,z轴磁场 方向(orientation):x轴,y轴,z轴 参考网站: http://www.ibm.com/developerworks/cn/opensource/os-android-sensor/ http://www.androidegg.com/portal.php?mod=view&aid=578 http://blog.csdn.net/xieyan0811/arc ...
最近有时间研究了一下nodejs。现在总结如下: 在nodejs官方网站:http://nodejs.org/上下载最新的nodejs源码node-v0.4.5.tar.gz,如果下载速度慢,可以访问github网站https://github.com/joyent/node/wiki/Installation根据步骤安装nodejs。 因为我的操作系 ...
Transport Description Abdera Transport Allows you to easily integrate with Atom feeds and Atom Publishing Protocol servers via the Apache Abdera project. Axis Transport Allows Mule managed components to be published as Axis services and allows components to invoke web services using Axis client cal ...
[size=x-large] 自己使用jquery-easyui编写的简单通用查询,字段类型未做判断,以后完善。 search.html代码如下: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>通用查询</title> <link rel="stylesheet" type="text/css" ...
一、预备知识—程序的内存分配    一个由C/C++编译的程序占用的内存分为以下几个部分    1、栈区(stack)—   由编译器自动分配释放   ,存放函数的参数值,局部变量的值等。其    操作方式类似于数据结构中的栈。    2、堆区(heap)   —   一般由程序员分配释放,   若程序员不释放,程序结束时可能由OS回    收   。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。    3、全局区(静态区)(static)—,全局变量和静态变量的存储是放在一块的,初始化的    全局变量和静态变量在一块区域,   未初始化的全局变量和未初始化的静态 ...
Global site tag (gtag.js) - Google Analytics