Documentation
¶
Overview ¶
zk provides with higher level commands over the lower level zookeeper connector
Index ¶
- func Children(path string) ([]string, error)
- func ChildrenRecursive(path string) ([]string, error)
- func Create(path string, data []byte, force bool) (string, error)
- func Delete(path string) error
- func Exists(path string) (bool, error)
- func Get(path string) ([]byte, error)
- func Set(path string, data []byte) (*zk.Stat, error)
- func SetServers(serversArray []string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Children ¶
Children returns sub-paths of given path, optionally empty array, or error if path does not exist
func ChildrenRecursive ¶
ChildrenRecursive returns list of all descendants of given path (optionally empty), or error if the path does not exist. Every element in result list is a relative subpath for the given path.
func Create ¶
Create will create a new path, or exit with error should the path exist. The "force" param controls the behavior when path's parent directory does not exist. When "force" is false, the function returns with error/ When "force" is true, it recursively attempts to create required parent directories.
func Delete ¶
Delete removes a path entry. It exits with error if the path does not exist, or has subdirectories.
func SetServers ¶
func SetServers(serversArray []string)
SetServers sets the list of servers for the zookeeper client to connect to. Each element in the array should be in either of following forms: - "servername" - "servername:port"
Types ¶
This section is empty.