Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultOpenReadOnly = false
DefaultOpenReadOnly allows some distributions of this command to default to always opening the index read-only
View Source
var RootCmd = &cobra.Command{ Use: "bleve", Short: "command-line tool to interact with a bleve index", Long: `Bleve is a command-line tool to interact with a bleve index.`, PersistentPreRunE: func(cmd *cobra.Command, args []string) error { if len(args) < 1 { return fmt.Errorf("must specify path to index") } runtimeConfig := map[string]interface{}{ "read_only": DefaultOpenReadOnly, } var err error idx, err = bleve.OpenUsing(args[0], runtimeConfig) if err != nil { return fmt.Errorf("error opening bleve index: %v", err) } return nil }, PersistentPostRunE: func(cmd *cobra.Command, args []string) error { err := idx.Close() if err != nil { return fmt.Errorf("error closing bleve index: %v", err) } return nil }, }
RootCmd represents the base command when called without any subcommands
Functions ¶
func CanMutateBleveIndex ¶ added in v0.6.0
CanMutateBleveIndex returns true if the command is capable of mutating the bleve index, or false if its operation is read-only
Types ¶
This section is empty.
Source Files ¶
Click to show internal directories.
Click to hide internal directories.