Skip to content
Snippets Groups Projects

Initial implementation of an elasticsearch indexer in Go

Merged Nick Thomas requested to merge 1-initial-implementation into master
All threads resolved!
5 files
+ 110
29
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 8
0
@@ -88,3 +88,11 @@ func (c *Client) Flush() error {
func (c *Client) IndexCommit(indexName string, commit interface{}) error {
return fmt.Errorf("TODO")
}
func (c *Client) IndexBlob(indexName string, blob interface{}) error {
return fmt.Errorf("TODO")
}
func (c *Client) RemoveBlob(indexName string, blob interface{}) error {
return fmt.Errorf("TODO")
}
Loading