You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 2.3 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. > **Note**: If you are switching to `OwnLocal/goes` from `belogik/goes` you will want to point whatever
  2. > dependency management system you are using at the `v1.0.0` tag to maintain backward compatibility
  3. > (or change your code to support any API changes which may exist). The `master` branch will contain
  4. > whatever the latest released version is and the `develop` branch will contain the currently
  5. > in-progress version. Either of these branches may contain backwards-incompatible changes from the
  6. > `v1.0.0` tag (which contains the code as it was when the code was forked from `belogik/goes`).
  7. Goes : a library to interact with ElasticSearch
  8. ===============================================
  9. Supported operations
  10. --------------------
  11. - index creation
  12. - index removal
  13. - simple indexing (document)
  14. - bulk indexing
  15. - search
  16. - get
  17. Example
  18. -------
  19. You will find examples in example_test.go
  20. License
  21. -------
  22. Copyright (c) 2013 Belogik. All rights reserved.
  23. Redistribution and use in source and binary forms, with or without
  24. modification, are permitted provided that the following conditions are
  25. met:
  26. * Redistributions of source code must retain the above copyright
  27. notice, this list of conditions and the following disclaimer.
  28. * Redistributions in binary form must reproduce the above
  29. copyright notice, this list of conditions and the following disclaimer
  30. in the documentation and/or other materials provided with the
  31. distribution.
  32. * Neither the name of Belogik nor the names of its
  33. contributors may be used to endorse or promote products derived from
  34. this software without specific prior written permission.
  35. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  36. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  37. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  38. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  39. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  42. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  43. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  44. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  45. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.