-2
votes
0answers
13 views

ElasticSearch and Apache nutch in property search application [closed]

I want to create web application like http://boomi.in/ this site index properties from urls and users can search for properties. I want to implement a web app with php as programming language and ...
0
votes
0answers
23 views

Index data with php crawlers to ElasticSearch

I want to index crawled websites to ElasticSearch but i don't know can i index crawled information to ElasticSearch with php crawler. I know that Apache nutch can index crawled websites to ...
0
votes
0answers
92 views

Elastica Search how to retrieve plain text results from indexed pdf/attachments

How do I get plain text search results from indexed pdf file contents with FOS Elastica Bundle? I'm using ElasticSearch with Attachment-Mapper Plugin Elastica FOS Elastica Bundle, with Doctrine on ...
0
votes
0answers
42 views

Elasticsearch results not relevant

I'm new to elasticsearch and I have a problem using it... Here is my configuration: $nameQuery = new \Elastica_Query_Text(); $nameQuery->setFieldQuery('name', $term.'-blabla'); ...
1
vote
2answers
187 views

Populate Google Chart with Search Data from Elasticsearch

I'm just learning Elasticsearch and Javascript and I just started using Google Charts due to their ease of use. I'm attempting to render a Google Chart based on an Elasticsearch query. The chart ...
0
votes
1answer
78 views

Search by term giving empty result using elastica

Using Elastica - Elasticsearch PHP Client. There are so many fields but I want to search in "Screen_name" field. What I have to do for it. I used term but without success. Result is empty array Here ...
1
vote
2answers
84 views

Class not found even though it is located where I am looking for it

I am trying to load a class in order for a PHP script that I wrote, with help of the classes' documentation, to work. Since my server is running PHP 5.3, the documentation recommended loading the ...
0
votes
0answers
109 views

Elastica Query with Elastica_Query_CustomFiltersScore combination

I have a problem with the order of documents in my boosted query. I have documents with many fields and boost some of the fields on query-side with a value of 2. I try to use a custom filter score ...
1
vote
0answers
256 views

How to connect MongoDB with Elastic Search using the ES plugin MongoDB river via Elastica

i'm new to programming, so i apologize, if my question is very simple. First of all, I have installed and configured MongoDB and ES with MongoDB river, but i can't find how to do it via Elastica. My ...
1
vote
1answer
242 views

Startswith query filter for elasticsearch using elastica

I have an elasticsearch search implementation working for a webapp but I am stuck on the last detail. I want to be able to filter certain fields alphabetically. So if I query 'd' it should bring back ...
0
votes
1answer
178 views

symfony2.1 FOQElasticaBundle class load

I setup FOQElasticaBundle following this https://github.com/Exercise/FOQElasticaBundle#readme both Elastica and FOQElasticaBundle installed using git submodule. and when I try app/console, it gives ...
0
votes
1answer
635 views

Elasticsearch or Solr + Mysql tables search

I'm a newbie to both Solr & Elasticsearch. I have a web application written in PHP with MYSQL as DB. I have 5 columns which contains text data. I want to index and apply search (from ...
0
votes
1answer
282 views

Elasticsearch - full text search

I am trying to match "new york" in a search (not places containing "new" or "york" separately) here is my current query: "query" : { "query_string" : { ...
1
vote
1answer
96 views

Filtering in Elastic Search?

I'm using date_histogram api to get the actual count using the interval (hour/day/week or month). Also I have a feature which I'm having trouble implementing, a user can filter the results by entering ...
0
votes
0answers
41 views

Quick searching/lookup in dynamic data

I want to achieve some fast lookup with relational information, which is able to scale up. I have all the capabilities in the world to form my layout. My quest: I want to be able to search for ...
1
vote
1answer
400 views

Elastic Search Query - Phrase with spaces

Hi I am trying to get a query to work and I am not understanding how to make it work I want to search for all matching words like this $term = +phrase +phrase +phrase but if phrase has a space in ...
0
votes
1answer
483 views

How to query using Elastica

This is my first time using Elastica and querying data from the ElasticSearch For me, as starter I have a question on how to query the code below using Elastica?: curl ...
3
votes
2answers
562 views

Symfony 2 FOQElasticaBundle search on multiple Entities

I started messing with the Elastic Search Bundle with Symfony 2 and have a question about the search function with entities. If you have a config like this : foq_elastica: clients: default: { ...
0
votes
1answer
156 views

Filter search results with elasticsearch

I'm using the following PHP client for elasticsearch: https://github.com/nervetattoo/elasticsearch, but I'm having trouble adding multiple fields to match against in my search query. I want to add a ...
5
votes
1answer
923 views

Is it possible to boost 'newest' items using elasticsearch? (FOQElasticaBundle)

I'm currently implementing elasticsearch in my Symfony2 application via the FOQElasticaBundle and so far it's been working great based on boosts applied to various fields of my "Story" entity. Here is ...
0
votes
1answer
866 views

Symfony2 Elastica bundle (elasticsearch) - possible to restrict only 'active' items?

I'm currently using the FOQElasticaBundle to interact with my elasticsearch server, but I can't seem to find a way to restrict the search results based on an "active" flag on each entity. Is it ...
2
votes
2answers
1k views

elasticsearch query and cURL in PHP

I am just starting with elasticsearch. I want to query using cURL in php. This code gives nothing... (see error below if I execute from command line. I am not sure that this error is caused of line ...
0
votes
0answers
154 views

ElasticSearch results ordering not what I would expect

I have managed to set up a basic ElasticSearch server for testing purposes before I develop the final code that will be used live. I have set up an index (games2) and a type (game). I managed to ...
0
votes
1answer
71 views

running _search commands in the php

now there is another problem that I am facing: When I run $ curl -X GET 'http://localhost:9200/sample/new/_search?pretty=true' -d '{ ...
0
votes
2answers
914 views

How to get results from “Elastica_ResultSet” object

I am using the "elastica" php client for ElasticSearch. I'm a bit new to OO-programming, especially in php. However, I have managed to search my elasticsearch server using the elastica php client ...
3
votes
3answers
2k views

Elastic search and Codeigniter (PHP)

I'm trying using ElasticSearch with Codeigniter framework. What i did is just install ElasticSearch and copyed ( :P ) a good PHP library found on the web to CI libraries: class Elasticsearch { ...
1
vote
2answers
601 views

Using Elastic Search to Query inside arrays in CouchDB

My CouchDB database is structured like this: "custom_details": {"user_education": [{"device_id": "358328030246627","college_name": "College","college_year": "2014"},]} "custom_details_1": ...