本文整理匯總了Golang中github.com/eaigner/hood.Indexes類的典型用法代碼示例。如果您正苦於以下問題:Golang Indexes類的具體用法?Golang Indexes怎麽用?Golang Indexes使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Indexes類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Indexes
func (table *Rdd) Indexes(indexes *hood.Indexes) {
indexes.Add("rdd__workflow_batch_id", "workflow_batch_id")
indexes.Add("rdd__protojob_id", "protojob_id")
}
示例2: Indexes
// Indexes for the user table
func (table *User) Indexes(indexes *hood.Indexes) {
indexes.AddUnique("name_index", "name")
indexes.AddUnique("dropbox_uid_index", "dropbox_uid")
}
示例3: Indexes
func (table *Users) Indexes(indexes *hood.Indexes) {
indexes.AddUnique("name_index", "first", "last")
}