Skip to content

PlkMarudny/follow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

follow

Build Status GoDoc

Go client for CouchDB _changes API.

Example

package main

import "fmt"
import "github.com/zemirco/follow"

func main() {

  // set CouchDB url and database name
  follow.Url = "http://127.0.0.1:5984/"
  follow.Database = "_users"
  follow.User = "user"
  follow.Pass = "password"

  // set query parameters
  params := follow.QueryParameters{
    Limit: 10,
  }

  // get all changes at once
  changes, err := follow.Changes(params)
  if err != nil {
    panic(err)
  }
  fmt.Println(changes)

  // listen continuously for changes
  changes, errors := follow.Continuous(params)
  for {
    select {
      // something changed
      case change, ok := <-changes:
      fmt.Println(ok, change)
      // an error happenend
      case err := <-errors:
      panic(err)
      // stop after 5 seconds
      case <-time.After(5 * time.Second):
      fmt.Println("done")
    }
  }

}

Test

go test

License

MIT

About

Go client for CouchDB _changes API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%