Skip to content

Instantly share code, notes, and snippets.

@lucianprecup
lucianprecup / controllers_snapshot.js
Created July 3, 2013 16:19
jquery angularjs autocomplete elasticsearch
angular.module('esClient.autocomplete', []).
directive('autoComplete', ['$http', function($http) {
return function (scope, elmt, attrs) {
$(function () {
$(elmt).autocomplete({
minLength:1,
html:true,
source:function (request, response) {
var postData = {
"fields": [
@lucianprecup
lucianprecup / queries_lorrainejug_gist.js
Last active August 29, 2018 09:08
Quelques requêtes Elasticsearch utilisées lors de la démonstration Lucene @LorraineJug
//-- pertinence et idf (Jean-Claude Jean après ville=Rueil)
{
"query": {
"bool": {
"should": [
{
"text": {
"nom": "jean"
}
},