Skip to content
/ rset Public

因为数据量大了之后有时候需要一种比较戳的方法查询,就是把数据捞到服务器上然后再筛选计算,转换成需要的数据,这个操作过程会有很多常用的方法,所以做这个库玩玩

License

Notifications You must be signed in to change notification settings

ascode/rset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rset

使用


func main() {

	// 新建一个RSet
	rset := collection.NewSet(test_data.StudentsGood, test_data.StudentsBad)

	printSet(rset)
	fmt.Println("---------------")
	rset.SortDescDowngradeBy("Id") 	// 集合按照排序字段顺次降级排序
	printSet(rset)
	fmt.Println("---------------")
	rset.SortAscDowngradeBy("Id") 	// 集合按照排序字段顺次升级排序
	printSet(rset)

	fmt.Println("")
	fmt.Println("----------------------------------------------")


	s := rset.SkipReturn(1).LimitReturn(2) // 留下第1个开始连续2个元素
	printSet(&s)

	fmt.Println("----------------------------------------------")

	std1 := test_data.Student{
		Id:5,
		Name:"小金李",
		Age:0,
		IsNewbie:true,
	}
	rset.Add(std1)	 // 添加一个元素
	printSet(rset)

	fmt.Println("----------------------------------------------")

	var newStudentCanInterface interface{} = []test_data.Student{}	// 新建一个装载结果的interface{}容器
	fmt.Println("fill前的newStudentCanInterface", newStudentCanInterface)

	rset.Fill(&newStudentCanInterface)								// 将rset填充到容器
	fmt.Println("fill之后的newStudentCanInterface", newStudentCanInterface)

	newStudentCan := newStudentCanInterface.([]test_data.Student)	// 将interface{}转换成其原始类型
	fmt.Println("强转对象之后的newStudentCan:", newStudentCan)

}

func printSet(rset *collection.RSet) {
	for _, obj := range rset.Set {
		fmt.Printf("%d,%s,%d,%-v\n", obj["Id"], obj["Name"], obj["Age"], obj["IsNewbie"])
	}
}


About

因为数据量大了之后有时候需要一种比较戳的方法查询,就是把数据捞到服务器上然后再筛选计算,转换成需要的数据,这个操作过程会有很多常用的方法,所以做这个库玩玩

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages