Posts by Tom • 241 points
6 posts
-
1
votes0
answers45
viewsQ: Decode JSON files in PHP without json_decode
I am currently returning JSON data from queries via Elasticsearch, however, the returns have a lot of information and the use of json_decode to be able to manipulate this data becomes very costly…
-
0
votes1
answer178
viewsA: Exact Search on Apache Solr
The solution is simple, just add the following parameters in the search URL: &defType=edismax&mm=100%25&stopwords=true&lowercaseOperators=true
apache-solranswered Tom 241 -
-1
votes1
answer178
viewsQ: Exact Search on Apache Solr
Hello. I’m doing a search on Apache Solr but it returns me several items that are outside the search. For example, let’s say I have three items, Samsung Tablet 7", Samsung Tablet 10.1" and Samsung…
apache-solrasked Tom 241 -
2
votes1
answer341
viewsQ: Portable Database for WPF + C#
I am creating a form in WPF + C# in VS Express 2013 for Desktop. Is there any database similar to Sqlite that I can use with C#+WPF? Because as I come from the development in Delphi I got used to…
-
2
votes1
answer1444
viewsQ: Call Method in Routes in Angularjs
I have a controller called Productocontroller in Angularjs, this controller should have two methods, one to list all products when I pass a URL and another method to bring the product details when…
-
8
votes2
answers969
viewsQ: HTML Desktop app with Node.JS + Socket.IO
I need to develop an HTML-based chat app that connects to a Node.JS server that is running with Socket.IO. I even developed much of the app using Tidesdk, but at the time of the integration to call…