Code Monkey home page Code Monkey logo

retsu's Introduction

retsu 列

A library to provide convenience functions for column

Sample Usage

type testObj struct {
	Index int    `json:"index"`
	Str   string `json:"str"`
}

// create new collection
col := column.NewCollection()

// add columns from struct
csvCols, err := StructToCols[testObj](col, "json")
if err != nil {
	return err
}

// add data
col.Query(func(txn *column.Txn) error {
  t := testObj{
    Index: 1,
    Str: "1",
  }
  // insert row based on struct
  txn.Insert(InsertStruct(&t, "json"))
  return nil
})

// save deep snapshot
if err := SaveDeepSnapshotFile(col, csvCols, "deep_snapshot.snappy"); err != nil {
	return err
}

---

// load deep snapshot
savedCol, savedCSVCols, err := LoadDeepSnapshotFile("deep_snapshot.snappy")
if err != nil {
	return err
}

Benchmarks

cpu: AMD Ryzen 9 5900X 12-Core Processor            
BenchmarkSnapshot/raw-24         	      57	  19821002 ns/op	12077931 B/op	     457 allocs/op
BenchmarkSnapshot/basic-24       	      61	  19677610 ns/op	13691278 B/op	     524 allocs/op
BenchmarkSnapshot/deep-24        	      55	  21546802 ns/op	23765586 B/op	     555 allocs/op

retsu's People

Contributors

sgosiaco avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.