elastic_client 0.1.12 copy "elastic_client: ^0.1.12" to clipboard
elastic_client: ^0.1.12 copied to clipboard

outdated

Dart bindings for ElasticSearch HTTP API. ElasticSearch is a full-text search engine based on Lucene.

example/example.dart

import 'package:elastic_client/console_http_transport.dart';
import 'package:elastic_client/elastic_client.dart' as elastic;

Future<void> main() async {
  final transport = ConsoleHttpTransport(Uri.parse('http://localhost:9200/'));
  final client = elastic.Client(transport);

  await client.updateDoc('my_index', 'my_type', 'my_id_1',
      {'some': 'data', 'name': 'Sue', 'distance': 10});
  await client.updateDoc('my_index', 'my_type', 'my_id_2',
      {'some': 'data', 'name': 'Bob', 'distance': 20});
  await client.updateDoc('my_index', 'my_type', 'my_id_3',
      {'some': 'data', 'name': 'Joe', 'distance': 10});
  await client.flushIndex('my_index');

  final rs1 = await client.search(
      'my_index', 'my_type', elastic.Query.term('some', ['data']),
      source: true);
  print(rs1.toMap());

  print('---');

  final rs2 = await client.search(
      'my_index', 'my_type', elastic.Query.term('some', ['data']),
      source: [
        'some',
        'name'
      ],
      sort: [
        {'distance': 'asc'},
        {'name.keyword': 'asc'}
      ]);
  print(rs2.toMap());

  await client.addAlias('my_index', 'my_index_alias');
  await client.updateDoc('my_second_index', 'my_type', 'my_id_1',
      {'some': 'data', 'name': 'Alice', 'distance': 10});
  await client.swapAlias(
      alias: 'my_index_alias', from: 'my_index', to: 'my_second_index');
  await client.removeAlias('my_second_index', 'my_index_alias');

  await transport.close();
}
41
likes
0
pub points
85%
popularity

Publisher

verified publisheragilord.com

Dart bindings for ElasticSearch HTTP API. ElasticSearch is a full-text search engine based on Lucene.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http_client

More

Packages that depend on elastic_client