[Groonga-commit] groonga/grnci at 1e63253 [master] Update README

Back to archive index

Susumu Yata null+****@clear*****
Wed Feb 10 23:05:22 JST 2016


Susumu Yata	2016-02-10 23:05:22 +0900 (Wed, 10 Feb 2016)

  New Revision: 1e632536939bc0ea3051513dc57e2221ca3a318e
  https://github.com/groonga/grnci/commit/1e632536939bc0ea3051513dc57e2221ca3a318e

  Message:
    Update README
    
    GitHub: #21

  Copied files:
    README.old.md
      (from README.md)
  Modified files:
    README.md

  Modified: README.md (+11 -146)
===================================================================
--- README.md    2016-02-04 11:17:51 +0900 (9a599a1)
+++ README.md    2016-02-10 23:05:22 +0900 (379c032)
@@ -1,155 +1,20 @@
-# GrnCI
+# README
 
-## Groonga Command Interface (Test version)
+Grnci is a Go library to operate Groonga DBs.
+Grnci is an abbreviation of Groonga Command Interface because Grnci operates Groonga DBs via Groonga commands.
 
-Groonga コマンドに対する Go インタフェースのテストと評価を目的としています.
+See http://groonga.org/docs/reference/command.html for details about Groonga commands.
 
-### Create()
+## Installation
 
-ローカル DB を作成してハンドルを作成します.
+Please ensure that Groonga is installed on you system.
+Then, you can use `go get` to install Grnci.
 
-### Open()
-
-ローカル DB を開いてハンドルを作成します.
-
-### Connect()
-
-サーバに接続します.
-
-### DB.Dup()
-
-ローカル DB へのハンドルもしくはサーバへの接続を複製します.
-
-### DB.Close()
-
-ローカル DB へのハンドルもしくはサーバへの接続を閉じます.
-
-### DB.TableCreate()
-
-`table_create` コマンドを実行します.
-
-```go
-// TableCreateOptions is a set of options for `table_create`.
-//
-// http://groonga.org/docs/reference/commands/table_create.html
-type TableCreateOptions struct {
-	Flags            string
-	KeyType          string
-	ValueType        string
-	DefaultTokenizer string
-	Normalizer       string
-	TokenFilters     string
-}
-
-// NewTableCreateOptions() returns the default options.
-func NewTableCreateOptions() *TableCreateOptions
-
-// TableCreate() executes `table_create`.
-//
-// If options is nil, TableCreate() uses the default options.
-//
-// If options.Flags does not contain TABLE_NO_KEY and options.KeyType is empty,
-// TABLE_NO_KEY is automatically added to options.Flags.
-//
-// http://groonga.org/docs/reference/commands/table_create.html
-func (db *DB) TableCreate(name string, options *TableCreateOptions) error
 ```
-
-**TBW**
-
-### DB.ColumnCreate()
-
-`column_create` コマンドを実行します.
-
-```go
-// ColumnCreateOptions is a set of options for `column_create`.
-//
-// `column_create` takes --flags as a required argument but ColumnCreateOptions
-// has Flags because users can specify COLUMN_* via an argument typ of
-// ColumnCreate().
-// This also means that COLUMN_* should not be set manually.
-//
-// `column_create` takes --source as an option but ColumnCreateOptions does not
-// have Source because users can specify --source via an argument typ of
-// ColumnCreate().
-//
-// http://groonga.org/docs/reference/commands/column_create.html
-type ColumnCreateOptions struct {
-	Flags string
-}
-
-// NewColumnCreateOptions() returns the default options.
-func NewColumnCreateOptions() *ColumnCreateOptions
-
-// ColumnCreate() executes `column_create`.
-//
-// If typ starts with "[]", COLUMN_VECTOR is added to --flags.
-// Else if typ contains ".", COLUMN_INDEX is added to --flags.
-// In this case, the former part (before '.') is used as --type and the latter
-// part (after '.') is used as --source.
-// Otherwise, COLUMN_SCALAR is added to --flags.
-//
-// If options is nil, ColumnCreate() uses the default options.
-//
-// http://groonga.org/docs/reference/commands/column_create.html
-func (db *DB) ColumnCreate(tbl, name, typ string, options *ColumnCreateOptions) error
-```
-
-**TBW**
-
-### DB.Load()
-
-`load` コマンドを実行して,更新されたレコードの数を返します.
-
-```go
-func (db *DB) Load(tbl string, vals interface{}, options *LoadOptions) (int, error)
-```
-
-- 7.3.20. load — Groonga v5.1.0ドキュメント
- - http://groonga.org/ja/docs/reference/commands/load.html
-
-`vals` にはレコードに対応する構造体,そのポインタおよびスライスを渡すことができます.
-データ型が `grnci.Bool`, `grnci.Int` などになっているフィールドのみが `load` に渡されます.
-基本的にはフィールド名がカラム名として採用されます.
-フィールドに `grnci` タグを付与することで,フィールド名とは異なるカラム名を指定することもできます.
-先頭の `;` までがカラム名として採用されます.
-
-以下,構造体と使い方の例です.
-
-```go
-type Value struct {
-	Key  grnci.Text  `grnci:"_key"`
-	ColA grnci.Bool  `grnci:"ColA"`
-	ColB grnci.Text  `grnci:"ColB"`
-	ColC []grnci.Int `grnci:"ColC"`
-}
-```
-
-```go
-var val Value
-val.Key = "orange"
-val.ColA = "false"
-val.ColB = "delicious"
-val.ColC = []grnci.Int{100, 200, 300}
-if err := db.Load("Fruit", val, nil); err != nil {
-	log.Fatal(err)
-}
-```
-
-`LoadOptions` を使えば `--columns` や `--ifexists` を指定できます.
-以下の例では `--columns` により更新するカラムを制限しています.
-
-```go
-options := grnci.NewOptions()
-options.Columns = "_key,ColB"
-if err := db.Load("Fruit", val, options); err != nil {
-	log.Fatal(err)
-}
+$ go get github.com/groonga/grnci
 ```
 
-以下のような注意点があります.
+## Documentation
 
-- レコードにより異なるフィールドを更新することはできません.
- - 別々に `Load()` を呼び出せば更新できます.
-- 専用のデータ型を使います.
- - 使えるデータ型は `grnci.Bool`, `grnci.Int`, `grnci.Float`, `grnci.Time`, `grnci.Text`, `grnci.Geo` とこれらのポインタ,スライス,およびにポインタのスライスのみです.
+Online documentation is available at https://godoc.org/github.com/groonga/grnci .
+In addition, if Grnci is already installed, `godoc` is available to read documentation.

  Copied: README.old.md (+0 -0) 100%
===================================================================
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index