search

How does google's search knows what you want to say?

Possible Duplicate: How does the Google Did you mean? Algorithm work? Anyone knows the ideia behind google's search when it appears to know what you did mean? i.e:You type Michxael Gekson and it find Michael Jackson ...

seo for search form

Hi all, I have a shopping site that works a little bit differently than the rest: the only way to get to the products that you want is by search, my client asked not to display links to categories of products. I'm worried about search engine optimization because crawlers won't be able to get to the products or the views. Oh, didn't i m...

Searching Core Data when field contains ' (single quote) character

Please help because I think I'm going mad. I have a core data collection that contains many thousand records. Some of the fields in these records contain terms that have a single quote. When building the database from XML, we created two fields - a NAME field and a SORTFIELD field. The NAME field contains the full term and is used...

NHibernate Full Text Search

What is the best way trying to get a text search function using nhibernate? I have read about NHibernate.Search, but cannot find the library anywhere. I downloaded the latest NHibernate source code(2.1.2) and compiled it, but i still cannot find NHibernate.Search. Does anyone have any suggestions? Or any other methods to do text search...

SQL Azure - Substring Searches?

SQL Azure does not support SQL Server's Full Text Search feature. Does this mean a text field cannot be indexed to handle substring searches? For example, if I have a table Emails, with a Message column And I want to find all messages with both the words 'hello' and 'thanks' in them, will the standard index on the message collumn allow ...

limit search suggestions in android QSB

Is there any way to limit the number of search suggestions that shows up in the QSB for my app? I see the 'clearHistory()' method but What i'd like to do is have the suggestions just be limited to say 5 previous searches, is this possible? ...

Adding system header search path to Xcode

(Posting this question for reference purpose, I'll answer immediately) How to header search paths to Xcode? Especially using include it this syntax: include <myheader.h> Adding path globally to all projects like system headers. Adding path to only to a specific project. ...

Django Haystack substring search

I have recently added search capabilities to my django-powered site to allow employers to search for employees using keywords. When the user initially uploads their resume, I turn it into text, get rid of stop words, and then add the text to a TextField for that user. I used Django-Haystack with the Whoosh search back engine. Three thin...

Quick Search Box when expanded not occupying the full background window!

Hi I am totally new to Android and my first assignment relates to QSB. When you tap on the QSB it expands and occupies the length and breadth of the home screen, but in my case after expanding one could still see a little portion of the background window at the bottom. Pls help!! ...

best search algo

What is the best search algo that has least worst case of execution time and is memory efficient. I'm looking for a data structure that can store lots of data within least memory possible and also is quickest to search for any item. This is for a scenario where i have few entries of form say A(name,value) pairs. and there are other entri...

Search for text in name range in Sheet 1and return Value in Sheet 2 using Excel VBA

Hi, I have something of the following : Sheet 1 (Name Range : Code) Column A -------- Column B School ------------ 1 College ----------- 2 University--------- 3 Sheet 2 Cell A1 = (Search for "College" in Name Range Code and get the Value of "2" as code. ) So value of 2 should be present in Cell A1. Please provide excel VBA ...

retrieving Google search results

hi sir..i read your post on http://stackoverflow.com/questions/1784114/simple-php-script-to-retrieve-google-keyword-search-completion and i was wondering how would you go 'echo' the next page? here's my script.. $search = 'query'; $x = json_decode( file_get_contents( 'http://ajax.googleapis.com/ajax/services/search/web?v=1.0...

Where has this cluster search algorithm been presented before?

See: http://kks.cabal.fi/GoodEnoughSearch I have gone through quite many papers and sites. I have not found where this algorithm has been presented before, or that someone has made something similar, but better or more general. The algorithm is pretty simple and thus should be found quite easily by anyone facing the same kind of problem...

How to Implement a Search Box Process in my HTML Website

Hi, Hoping someone can assist with a means of implementing a "Search" routine/page that I can apply to my site that is purely a HTML website only. I have provided a Search box for the user but unsure what the next step is, i.e. can I insert php to perform the Search of my site. Would really appreciate any help/tutorials/links that dem...

Help with Drupal Search Form Display

When displaying the search form in my header, what is the preferred method to use if it cannot fit into my header region?? should I... create a custom region? use some kind of 'print $search_form' drupal_get_form()?? use the theme() function?? please help! I'm new to Drupal and trying to figure out the best 'Drupal Way' of doing thi...

Solr with JQuery to build autocomplete

Hi - I have set up solr and it works. I have tested it by indexing my MySQL db and running queries on it, trying facets and trying the term suggest component (which I wish to use with autocomplete). I have recently walked through the reuters tutorial here and it worked on my local machine. Now my solr instance is on: "http://[someurl]:...

Search Problem in SQL Server

I need to search in a table for items which have all of my desired values in a column i.e. I have table : ID : 1 2 3 3 2 2 2 1 1 3 VALUE : 5 6 5 3 6 7 2 1 9 0 I want to give a StoredProc a list of values for example ("6,7,2") and it returns me all IDs that have all the given values in this case it would only returns 2 If I wanted ...

Lambda Expressions and searching.

Lets say i have a form which have the following : Name:TextBox Email:TextBox Age:TextBox now i want to Get customers Collection based on this filter textboxs so i want to to use something like : List<customer> customers = getCustomerswhere(c=>c.name == txtName.Text && Email == txtEmail.Text); now of course i dont know which...

How to search a list in C#

Hi there, I have a list like so: List<string[]> countryList and each element of the string array is another array with 3 elements. So countryList[0] might contain the array: new string[3] { "GB", "United Kingdom", "United Kingdom" }; How can I search countryList for a specific array e.g. how to search countryList for new string...

Architecture with 3 servers for solr search engine

I'm going to build a search engine on solr, and nutch as a crawler. I have to index about 13mln documents. I have 3 servers for this job: 4 core Xeon 3Ghz, 20Gb ram, 1.5Tb sata 2*4 core Xeon 3Ghz, 16Gb ram, 500Gb ide 2*4 core Xeon 3Ghz, 16Gb ram, 500Gb ide One of the servers I can use as a master for crawling and indexing, other twos...