Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created August 28, 2013 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hubgit/6365895 to your computer and use it in GitHub Desktop.
Save hubgit/6365895 to your computer and use it in GitHub Desktop.
<?php
$data = json_encode(array(
'query' => array(
'more_like_this' => array(
'fields' => array('title', 'text'),
'like_text' => $text,
'min_term_freq' => 3,
'max_query_terms' => 50,
'percent_terms_to_match' => 0.1,
)
),
'size' => 100,
'fields' => array('id', 'title', 'category'),
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment