SequoiaDB 巨杉資料庫 help 示例

2021-10-14 06:05:30 字數 2305 閱讀 5957

顯示全域性幫助資訊。

> help()
顯示類包含的的所有方法。

> oma.help()

--constructor methods for class "oma":

var oma = new oma([hostname],[svcname])

- class for cluster management.

--static methods for class "oma":

oma.addaomasvcname(,,[isreplace],[conffile])

- specify the service name of sdbcm in target

host.

oma.delaomasvcname(hostname,[conffile])

- delete the service name of sdbcm from its

configuration file in target host.

oma.getaomasvcname(hostname,[conffile])

- get the service name of sdbcm in target host.

...

顯示物件包含的所有方法。

> var oma = new oma()

> oma.help()

--instance methods for class "oma":

close() - close the oma object.

createcoord(,,[config])

- create a coord node in target host of sdbcm.

createdata(,,[config])

- create a standalone node in target host of

sdbcm.

...

檢視具體方法的詳細幫助文件。

> help("createcs")

createcs(1) version 2.8 createcs(1)

name

createcs - create a collection space in current database.

synopsis

db.createcs(,[options])

category

sequoiadb

description

create a collection space in a database instance.

name (string)

collection space name. collection space name should be

unique to each other in a database instance.

...

查詢具體類或者物件具體方法的詳細幫助文件。

> var db = new sdb()

> db.sample.help("createcl") // 或者 sdbcs.help("createcl")

createcl(1) version 2.8 createcl(1)

name

createcl - create a new collection.

synopsis

db.collectionspace.createcl(,[option])

category

collection space

description

create a collection in a specified collection space. collection is a

logical object which stores records. each record should belong to one

and only one collection.

parameters

* name ( string , required )

the name of the collection, should be unique to each other in a

collection space.

...

SequoiaDB巨杉資料庫C API

此部分是 c api 相關文件。注意 version 2.10 新增收集資料統計資訊介面 新增修改介面 version 1.10 新增獲取查詢訪問計畫的介面 新增用於大物件 lob 操作的介面 version 1.8 新新增介面 version 1.6 使用 sdbnodehandle 來取代原來的...

SequoiaDB 巨杉資料庫 工具

stpstp 是 stp 提供邏輯時間的可執行程式。引數說明 引數名 縮寫 型別 說明 help h 返回 stp 的用法和幫助 version 返回 stp 的版本資訊 port p int32 1.stp 監聽埠 2.預設值為 9622 3.開啟 tcp 和 udp 協議的監聽 serverli...

SequoiaDB巨杉資料庫 分割槽

分割槽功能用於將一張表的儲存分散到多個物理位置,達到更好的併發讀寫效果。在資料量大時,速度提公升更為明顯。mysql 提供了四種分割槽的方式 range 分割槽 list 分割槽 hash 分割槽和 key 分割槽,同時還支援復合分割槽的方式。復合分割槽中,上層分割槽必須使用 range 或者 li...