Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 724 Bytes

NEWS.md

File metadata and controls

23 lines (19 loc) · 724 Bytes

NEWS

1.4.6

  • The version numbers in the tag have changed. There is no 'v' as a prefix, i.e. it is 1.4.6, not v1.4.6

1.4

  • Pools are referenced directly as <<"some_name">>, instead of {pool, <<"some_name">>}. e.g.
(erlasticsearch@paglierino)1 > erlasticsearch:start_pool(<<"some_unique_name_here">>).
  • Removed the 'standalone gen_server' way of doing things. Its pools right all the way down.
  • Don't need to actually start a pool - one will be started for you if necessary. e.g.
erlasticsearch@pecorino)1> erlasticsearch:flush(<<"bar1">>).
[{status,<<"200">>},
 {body,<<"{\"ok\":true,\"_shards\":{\"total\":0,\"successful\":0,\"failed\":0}}">>}]