dd if=/dev/zero of=/foobar.fs bs=1M count=500
mkfs /foobar.fs
mkdir /foobar
mount /foobar.fs /foobar
curl -XGET 'http://localhost:9200/_search' -d '{
"filter": {
"bool": {
"should": [
{
"regexp": {
"word": "мульт.*"
}
},
{
"regexp": {
"word": "фильм.*"
}
}
],
"must_not": {
"terms": {
"word": ["видео", "скачать"]
}
}
}
}
}'
curl -XGET 'http://localhost:9200/_validate/query?explain' -d '{
"query": {
"regexp": {
"word": "мульт.*"
}
}
}'
Что посоветуете ?
Если смотреть в сторону готовых решений...
$properties = array();
array_walk_recursive($rawData, function($value, $key) use(&$properties) {
if ($key === 'properties') {
$properties = $value;
}
});
$app['dbs']['local'] -> insert("yandexResponse", [
'yandexResponse',
serialize([
'response' => $response,
'time' => time(),
'title1' => $data['title1']
])
]);