HBase部分
刘啸尘-勤奋的小小尘
活泼开朗,
展开
-
FirstKeyOnlyFilter的使用方法及实例
FirstKeyOnlyFilter :api中解释如下: A filter that will only return the first KV from each row. This filter can be used to more efficiently perform row count operations. 说的明明白白,只会取得每条数据的第一个kv,可以用于...2012-08-17 18:01:00 · 446 阅读 · 0 评论 -
KeyOnlyFilter使用方法及实例
KeyOnlyFilter 官方API解释如下: A filter that will only return the key component of each KV (the value will be rewritten as empty). This filter can be used to grab all of the keys without having to also...2012-08-20 11:09:00 · 346 阅读 · 0 评论 -
简单的hibernate示例(第一个)
一下代码,是我简单写的hibernate的示例,很简单,算是对hibernate的的回忆,很简单 pojo类,user,代码如下: package com.pzoom.xiaochen.pojo; import java.util.Date; /** * * @author lenovo * */ public class User { privat...2012-09-02 22:43:00 · 92 阅读 · 0 评论
分享