search

Help understanding weird Bing phrase query behavior

I've noticed in searching Bing that I sometimes don't get the results I'm expecting. For example, the search "Singapore Bao" "29 Bendeemer Road" "330029" returns 10 results, 2 pages that contains all of the above phrase Looks like Bing does some phrase manipulation. If I only want to see those two results the advanced search page indi...

Search app in Django

I am building search app using django & sphinx. I got the setup working but when I search I get irrelevant results. Here is what I do - # this is in my trial_data Model search = SphinxSearch( index = 'trial_data trial_datastemmed', weights = {'name': 100,}, mode = 'SPH_MATCH_A...

google ajax search api

Hello! I'm using the Google AJAX search API and I found that I can't get more than 64 results for a query and Google limits the search results per page to 8. while searching for a solution I found a script that may increase search results to 7168 results. Here is the link: http://www.teamlalala.com/blog/2009/01/05/google-api-limits-re...

how to read a file from documents directory

i hav to read the file with name myname.plist from documents directory .....i want to store the content of the file to string.... ...

Searching MySQL with AES Encryption

Hello, I am just curious if someone can get me pointed in the right direction with searching MySQL with AES encryption. There are a couple of things that need to be considered. If I take the keyword and encrypt it before searching, i'm comparing encryption to encryption and even if one letter is cap and another letter isn't cap insid...

SQL Search Problem With New SearchContent Function

Hi everyone, I have a question about searching in SQL. We have a piece of code below responsible for searching a set of content within our site. When we wrote the StaticContent algorithm, it worked fine. After adding ContribContent (2nd and 4th par) it does not appear to work. Do you have any idea why? Thanks so much! ALTER PROCEDURE [...

Blogger multiple label search

on any blogspot blog, if you click on a label, it will do a search for you on all the blog, showing stuff tagged with that label. is there a way to do that again? i mean to search for 2 labels. I want to see all the posts that have both labels. is there something built in? if not, can I do something about that on my blog? something cu...

Searching within AlertDialog

Hi, I have an alert dialog which lists around 100 cities. Is there a way to search within it? Or maybe autocomplete? I want to add a textbox which will filter the list according to what I type. EDIT: I'm very SORRY. What I meant was that I wanted to FILTER the above list based on what I type in a textbox. For example if I type 'D', I...

SearchBar not displaying results until cancel button clicked

I have implemented a UITableView with search bar (and search display) - all works fine, but the table results do not get updated until the search bar cancel button is tapped. Delegate methods: - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar { // asynchronous request with [self.tableView reloadData] in the connectionD...

How to find type specific references to equals() in the workspace in Eclipse?

I've got a class which overrides equals() and I want to see where this equals method is being used in the workspace. Using Eclipse, I generally do Ctrl-Shift-g which finds all references in the workspace. Unfortunately, for equals(), its pulling back every single reference of equals in my workspace from any type, not just the one where...

SOLR - How to have facet counts restricted to rows returned in resultset

/select/?q=*:*&rows=100&facet=on&facet.field=category Say I have around a lakh documents indexed. But i return only 100 documents using rows=100. The facet counts returned for category, however return the counts for all documents indexed. Can we somehow restrict the facets to the resultset returned? i.e 100 rows only? ...

Options for implementing search in .Net web projects?

I come from a background in Ruby on Rails. Implementing search is relatively trivia using some of the excellent search plugins available to that community (i.e., Sphinx, Solr, etc.). In .Net, what's a similar counter part the above strategies? I discovered DotLucene -- but, that project is now closed. Any others I should consider? T...

PHP :: handle typos in search

I have a field to input your friend's name and search him up to add him as friend. The problem is that if you are not sure how to spell his name like: Kris instead of Chris for example. I think the right way to do this is use RegEx but I don't know how... How can I handle those kind of typos in PHP ? (if it isn't possible in PHP then...

SQL Searching Error in Content

Hi everyone, we are having an issue searching in the ContribContent Function. The StaticContent works fine, but the system will not search for CC. The issue is this stored procedure is meant to search for content on an informational website there are three datatables involved: StaticContent (written by our content team), ContribCo...

Text editor that searches within search results

Does anyone know of a text editor that searches within search results using regex? I would like to perform a regex search on several text files and get a list of matches and then apply another regex search on the search results to further narrow down results. I would prefer a Windows GUI editor rather than a specialized editor with a st...

Searching Techniques Recommendations

Hi everyone. This is more of a theory question rather than practice. I'm working on a project which is quite a simple catalog of links. The whole model is similar to the Dmoz or Yahoo catalog, except that each entry has certain additional attributes. I have hierarchical taxonomy working on all entries with many-to-many relationship, all...

WHERE IN Question

I have a couple of Tables already supplied in the form MainRecord Record ID Details Textual Information 1 AAAAAAA ... some text referring to Oxford St Giles... 2 BBBBBBB ... some text referring Oxford.... 3 CCCCCCC ... some text referring to Oxford St Aldate... and supporting table Pl...

Why does a multi-word Doctrine search cause MySQL to use up to 300% CPU?

I have a table using Doctrine's Searchable behaviour, which works well for single word queries. However I've noticed that when a query includes a space, the page hangs and I can't get any response out of refreshing the page etc. If I open Activity Monitor on my Mac, or SSH then 'top' in Ububntu, MySQL is running a process at up to 300% ...

How do I perform Visual search using Android API?

I want to use the Camera Image to get the google search results. I could not find a way to do that using Android API. ...

How should I manage large DataTables?

Hi everyone, For reasons that don't make a lot of sense (Read: Not my decision) I need to keep a large number of rows, about ~90,000, in a DataTable and I do not have the option of using a database. I need to be able to search the DataTable efficiently to find rows that match some basic criteria. For example, I might be looking at a ro...