active questions tagged search - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T23:34:55Zhttp://stackoverflow.com/feeds/tag/searchhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803595/mysql-database-search0MySQL database searchAnthony2009-11-26T13:10:44Z2009-11-26T17:48:15Z
<p>I have a database table with chinese dictionaries (about 300 000 rows) for online dictionary. The data structure looks like this:</p>
<pre><code> ID ch_smpl pinyin definition
----------------------------------------
1 我 wǒ I, me
2 我们 wǒmen we, us
etc.
</code></pre>
<p>I'm not good with php and mysql, so the question is how to setup a search engine? I've found a bunch of tutorials on php mysql search, I also found some full-text search examples, but I'm not sure how it works with chinese characters. The speed of search is really important for me.</p>
<p>Any suggestions on how to organize the search engine for this purpose are greatly appreciated.</p>
http://stackoverflow.com/questions/1804734/file-search-in-c0file search in c++mars2009-11-26T16:46:30Z2009-11-26T17:15:23Z
<p>hey</p>
<p>I just started learning c++ and am currently using codeblocks.
i wanna write an application that can search for files in directory including it's subdirs, but i cant seem to find any good examples for this and i've read somewhere that this is only possible trough a library like boost.</p>
<ol>
<li>is this true?</li>
<li>any examples for doing it without library?</li>
</ol>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1803457/optimising-searching-of-a-2-dimensional-array-with-linq3Optimising Searching of a 2-dimensional Array with LINQNikolas Stephan2009-11-26T12:40:37Z2009-11-26T14:21:38Z
<p>I have a 2-dimensional array of objects (predominantly, but not exclusively strings) that I want to filter by a string (<code>sSearch</code>) using LINQ. The following query works, but isn't as fast as I would like.</p>
<p>I have changed <code>Count</code> to <code>Any</code>, which led to a significant increase in speed and replaced <code>Contains</code> by a regular expression that ignores case, thereby elimiating the call to <code>ToLower</code>. Combined this has more than halved the execution time.</p>
<p>What is now very noticeable is that increasing the length of the search term from 1 to 2 letters triples the execution time and there is another jump from 3 to 4 letters (~50% increase in execution time). While this is obviously not surprising I wonder whether there is anything else that could be done to optimise the matching of strings?</p>
<pre><code>Regex rSearch = new Regex(sSearch, RegexOptions.IgnoreCase);
rawData.Where(row => row.Any(column => rSearch.IsMatch(column.ToString())));
</code></pre>
<p>In this case the dataset has about 10k rows and 50 columns, but the size could vary fairly significantly.</p>
<p>Any suggestions on how to optimise this would be greatly appreciated.</p>
http://stackoverflow.com/questions/1802867/add-site-and-page-description-to-sharepoint-search-index0Add Site and Page Description to SharePoint Search IndexMagicAndi2009-11-26T10:30:07Z2009-11-26T13:59:35Z
<p>Hi,</p>
<p>As part of a SharePoint solution, the functionality for users to create new web sites and publishing pages (programmatically) via a button click has been added. I need to ensure that the Description field for the newly created sites and pages is indexed by SharePoint Search. What is the best way to do this?</p>
<p>Please note, I am <strong>NOT</strong> interested in starting a new crawl. I just want to ensure that whenever the next scheduled crawl occurs, the contents of these fields will be searchable.</p>
<p>Thanks, MagicAndi </p>
http://stackoverflow.com/questions/1002953/large-sqlite-database-search1Large Sqlite database searchAlex2009-06-16T17:46:18Z2009-11-26T08:11:01Z
<p>How is it possible to implement an efficient large Sqlite db search (more than 90000 entries)?</p>
<p>I'm using Python and SQLObject ORM:</p>
<pre><code> import re
...
def search1():
cr = re.compile(ur'foo')
for item in Item.select():
if cr.search(item.name) or cr.search(item.skim):
print item.name
</code></pre>
<p>This function runs in more than 30 seconds. How should I make it run faster? </p>
<p><strong>UPD</strong>: The test:</p>
<pre><code> for item in Item.select():
pass
</code></pre>
<p>... takes almost the same time as my initial function (0:00:33.093141 to 0:00:33.322414). So the regexps eat no time.</p>
<p>A Sqlite3 shell query:</p>
<pre><code> select '' from item where name like '%foo%';
</code></pre>
<p>runs in about a second. So the main time consumption happens due to the inefficient ORM's data retrieval from db. I guess SQLObject grabs entire rows here, while Sqlite touches only necessary fields.</p>
http://stackoverflow.com/questions/1208228/advanced-search-using-checkboxlist0Advanced Search using CheckboxListdoclove2009-07-30T17:54:00Z2009-11-26T08:00:06Z
<p>I have an advanced search that I need to implement for a website using C# and SQL Server. Here is the basic idea:</p>
<ol>
<li>User selects required search criteria - city, state, zip</li>
<li>User can select optional search criteria. This search criteria is a checkbox list. The checkbox list is databound to a list of criteria from sql server.</li>
<li>The search happens for all required search criteria and if any optional criteria was selected then the item needs to match all of the optional criteria.</li>
</ol>
<p>I have the required search criteria working, but I can't figure out how to do the optional criteria. The issue comes in that the user can select multiple criteria in the checkboxlist and all of those items need to be matched. I also need to implement paging and sorting (which I have working), but this means that the search needs to happen in SQL.</p>
<p>Has anyone done something like this before and has some ideas on the best way to do it?</p>
http://stackoverflow.com/questions/1795212/how-to-use-sphinx-in-rails-and-exclude-results-based-on-a-column-value1how to use sphinx in rails and exclude results based on a column valuem.u.sheikh2009-11-25T07:25:16Z2009-11-26T05:57:50Z
<p>I have a simple query to show users that are active, but somehow it is still showing inactive users. I am using sphinx. The query looks like:</p>
<pre><code>User.search keywords,:conditions=>conditions, :match_mode=>:boolean, :order =>sort_order.to_s, :page => page,:per_page =>per_page
</code></pre>
<p>the conditions hash looks like this:</p>
<pre><code>conditions = {:is_expired => false, :is_disabled => false,...}
</code></pre>
<p>the condiitions include: :is_expired => false, yet it fetches those users which have :is_expired = true. </p>
<p>What do i need to do to make it only fetch those records that are not expired?</p>
http://stackoverflow.com/questions/1786039/can-i-redirect-a-query-from-default-search-box-in-sharepoint-to-a-different-searc0Can I redirect a query from default search box in SharePoint to a different search engine.Carol2009-11-23T21:19:25Z2009-11-26T02:41:28Z
<p>I dont want the default results that SharePoint returns. I want the query term when entered into SharePoint search box to be redirected to a different search engine? Can I do that.
I have seen FAST ESP web parts but could not figure out how they actually transferred the query to FAST search engine.</p>
<p>Any help would be really appreciated!!</p>
http://stackoverflow.com/questions/1800852/drupal-search-engine-does-not-index-my-custom-nodes0Drupal search engine does not index my custom nodes!mac2009-11-26T00:12:58Z2009-11-26T00:13:22Z
<p>Somebody has posted an hour ago or so a question that was about the drupal search engine and was about like this:</p>
<blockquote>
<p>I know drupal should index anything that is returned by <code>node_view()</code> but this is not happening for my custom content. Also: are there better alternatives to Drupal built-in functionality?</p>
</blockquote>
<p>As the question has been removed while I was answering, and didn't want to throw away 20 minutes of my life for nothing ;) I thought to re-create the question a second time. Hope this is fine by the rules of SO! :)</p>
http://stackoverflow.com/questions/1798296/can-i-read-the-search-scope-selected-in-sharepoint-from-code-behind0Can I read the search scope selected in SharePoint from code behindCarol2009-11-25T16:48:44Z2009-11-25T22:31:52Z
<p>I have a search box web part. In that web part I have created an instance of SearchBoxEx like</p>
<p>SearchBoxEx par=new SearchBoxEx
par.goImageUrl=""
par.DropDownMode= DropDownModes.DisplayScopeDD;
Button sear= new Button();
sear.Click += new EventHnadler(sear_Click);</p>
<p>I have added a button to that search Box web part.Now I have to read the scope selected in the SearchBoxEx in the sear_Click event.Can anyone please guide me in the right direction</p>
<p>Any help would be really appreciated.</p>
http://stackoverflow.com/questions/502915/how-to-get-better-suggestionspelling-on-yahoo-boss1how to get better suggestion(spelling) on yahoo boss?Ratn Deo--Dev2009-02-02T11:35:05Z2009-11-25T22:00:02Z
<p>I have been using Yahoo BOSS for little time .It is an easy API for search but spelling suggestion support is really not that robust .Do folks around here have any idea of getting better spelling suggestion on BOSS.</p>
http://stackoverflow.com/questions/932156/get-context-for-search-string-in-text-in-c0Get context for search string in text in C#soundslike2009-05-31T14:49:53Z2009-11-25T19:00:03Z
<p>Given a string text which contains newline there is a search keyword which matches an item within the text.</p>
<p>How do I implement the following in C#:</p>
<p>searchIdx = search index (starting with 0, then 1, etc. for each successive call to GetSearchContext. Initially start with 0.</p>
<p>contextsTxt = string data to search in</p>
<p>searchTxt = keyword to search for in contextsTxt</p>
<p>numLines = number of lines to return surrounding the searchTxt found (ie. 1 = the line the searchTxt is found on, 2 = the line the searchTxt is found on, 3 = the line above the searchTxt is found on, the line the searchTxt is found on, and the line below the searchTxt is found on)</p>
<p>returns the "context" based on the parameters</p>
<p>string GetSearchContext(int searchIdx, string contentsTxt, string searchTxt, int numLines);</p>
<p>If there's a better function interface to accomplish this feel free to suggest that as well.</p>
<p>I tried the following but doesn't seem to work properly all the time:</p>
<pre><code> private string GetSearchContext(string contentValue, string search, int numLines)
{
int searchIdx = contentValue.IndexOf(search);
int startIdx = 0;
int lastIdx = 0;
while (startIdx != -1 && (startIdx = contentValue.IndexOf('\n', startIdx+1)) < searchIdx)
{
lastIdx = startIdx;
}
startIdx = lastIdx;
if (startIdx < 0)
startIdx = 0;
int endIdx = searchIdx;
int lineCnt = 0;
while (endIdx != -1 && lineCnt++ < numLines)
{
endIdx = contentValue.IndexOf('\n', endIdx + 1);
}
if (endIdx == -1 || endIdx > contentValue.Length - 1)
endIdx = contentValue.Length - 1;
string lines = contentValue.Substring(startIdx, endIdx - startIdx + 1);
if (lines[0] == '\n')
lines = lines.Substring(1);
if (lines[lines.Length - 1] == '\n')
{
lines = lines.Substring(0, lines.Length - 1);
}
if (lines[lines.Length - 1] == '\r')
{
lines = lines.Substring(0, lines.Length - 1);
}
return lines;
}
</code></pre>
http://stackoverflow.com/questions/1798411/file-system-regular-expression-search-tool0File system regular expression search toolSuperfilin2009-11-25T17:06:13Z2009-11-25T17:53:46Z
<p>What is the best tool to make complex (multi-line) regular expression file contents searches with good reporting capabilities? </p>
<p>I need to make a report over large Java/JSP code base and I have to make some charts afterward.</p>
<p>Eclipse is rather good at searches, but it does not provide good report of what is found. It just shows the tree of files, but I would like to see a table with columns corresponding to full match, each group, file name, file path, file date, may some version control information etc. Then I can transfer this table to Excel and make some graphs that I want.</p>
<p>Is there some generic file system search tool that has such capabilities? Or maybe there is some Eclispe plugin that can give better reports (note that I'm stuck on eclipse 3.1.2)?</p>
http://stackoverflow.com/questions/1792400/where-to-look-for-an-example-of-an-excellenly-made-search-functionality-in-an-ope0Where to look for an example of an excellenly made search functionality in an open source projectdimus2009-11-24T19:32:21Z2009-11-25T16:40:30Z
<p>I am working on a search functionality for an encyclopedia-like application about species with millions of topics. Search of the information is organized mostly by looking up either common name or scientific name of the species. Currently we are using Solr as a backend search engine. </p>
<p>I am looking for code examples to learn about algorithms (not necessarily using Solr) used in searching of similar organized information.</p>
<p>Do you know open source projects to learn about such algorithms and approaches to searching?</p>
http://stackoverflow.com/questions/1796860/to-create-a-search-with-values-from-multiple-selection-element0To Create a Search, with values from multiple selection element? Harish2009-11-25T13:18:17Z2009-11-25T13:52:18Z
<p>I am working in PHP(with Symfony Framework) and i want to create a search based on multiple values selected from multiple selection element,
i.e there will be multiple selection dropdown elements for like countries, cities, age etc..
and the values from them will query a data table and give the desired search output. (all values are not mandatory, will work with atleast one value).
the idea will also do..</p>
http://stackoverflow.com/questions/398811/finding-long-repeated-substrings-in-a-massive-string1finding long repeated substrings in a massive stringWill2008-12-29T21:56:55Z2009-11-25T11:44:57Z
<p>I naively imagined that I could build a suffix trie where I keep a visit-count for each node, and then the deepest nodes with counts greater than one are the result set I'm looking for.</p>
<p>I have a really really long string (hundreds of megabytes). I have about 1 GB of RAM.</p>
<p>This is why building a suffix trie with counting data is too inefficient space-wise to work for me. To quote <a href="http://en.wikipedia.org/wiki/Suffix_tree" rel="nofollow">Wikipedia's Suffix tree</a>:</p>
<blockquote>
<p>storing a string's suffix tree typically requires significantly more space than storing the string itself.</p>
<p>The large amount of information in each edge and node makes the suffix tree very expensive, consuming about ten to twenty times the memory size of the source text in good implementations. The suffix array reduces this requirement to a factor of four, and researchers have continued to find smaller indexing structures.</p>
</blockquote>
<p>And that was wikipedia's comments on the tree, not trie.</p>
<p>How can I find long repeated sequences in such a large amount of data, and in a reasonable amount of time (e.g. less than an hour on a modern desktop machine)?</p>
<p>(Some wikipedia links to avoid people posting them as the 'answer': <a href="http://en.wikipedia.org/wiki/Category:Algorithms_on_strings" rel="nofollow">Algorithms on strings</a> and especially <a href="http://en.wikipedia.org/wiki/Longest_repeated_substring_problem" rel="nofollow">Longest repeated substring problem</a> ;-) )</p>
http://stackoverflow.com/questions/1794162/ruby-web-spider-search-engine-library0Ruby web spider & search engine libraryPistos2009-11-25T01:51:35Z2009-11-25T09:52:57Z
<p>I'm looking for a Ruby library or gem (or set of gems) which will not only do spidering, but also collect the data into, say, a database, and allow basic searches on the data (i.e. a typical web search).</p>
<p>I've found several spidering libraries, so that part seems well covered (I was going to try Anemone first), but I can't find anything that will take the spidered data and allow querying on it. For lack of an existing one, I was going to write something myself with Anemone.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1795459/apple-uses-which-search-engine0apple uses which search engine? [closed]murali2009-11-25T08:31:47Z2009-11-25T08:31:47Z
<p>hi
apple uses which search engine?</p>
http://stackoverflow.com/questions/1794596/non-cap-sensitive-search-c0Non cap sensitive search C#baron2009-11-25T04:20:23Z2009-11-25T04:31:31Z
<p>Hi all,</p>
<p>I want to do a search of a list of strings, non cap sensitive.</p>
<p>Have tried .Contains and ==</p>
<p>Is there a method to do this, or would I have to convert the entire list of strings to noncaps, then search?</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/967434/django-haystack-and-whoosh2Django haystack and whooshsleepyjames2009-06-08T22:52:53Z2009-11-25T03:50:58Z
<p>Does anyone have any experience using django-haystack with the whoosh backend?</p>
<p>I'm looking to use it for a categorized live-search type tool. Is it gonna be fast/efficient enough in a production environment to avoid setting up either solr or xapian?</p>
http://stackoverflow.com/questions/1781428/acronyms-with-sphinx-search-engine1Acronyms with Sphinx search enginematt2009-11-23T06:28:05Z2009-11-25T00:23:56Z
<p>how can i index acronyms like 'm.i.a.'? when i search for 'mia', i get results for 'mia' and not 'm.i.a.'. when i search for 'm.i.a.', i get nothing at all.</p>
<p>edit:</p>
<p>solution looks roughly like: <code>ignore_chars = -, .</code></p>
http://stackoverflow.com/questions/1574090/many-to-many-and-writing-a-semi-smart-matching-algorithm0Many to many and writing a semi-smart matching algorithmBloudermilk2009-10-15T18:07:11Z2009-11-25T00:11:37Z
<p>Hello community,</p>
<p>I'm learning to program with Ruby on Rails and I've reached my hardest task yet. I have two tables, each containing a list of business categories (I.E. Thai Food Restaurant, Plumber, Office Supply Store). These two tables come from two different APIs where I'm essentially acting as the middle-man between them. They list more or less the same types of categories, but often times they will phrase it differently (I.E. auto body repair and painting VS automobile body repair and painting).</p>
<p>My first goal was to design the model for this task. I decided upon a "many to many" and tested it by manually mapping two rows. <strong>Done. Tested. Awesome.</strong></p>
<p>My second goal is to write an algorithm to match rows from the two tables to each other, giving precedence based on similarity. I'm guessing a lot of the work can be done in MySQL. Here is my pseudo-code so far:</p>
<pre><code>for each row in table 1
split phrase up into words by spaces
SELECT name, id FROM joined_table
SELECT name, id FROM table2 AS word1 WHERE name LIKE '% word1 %'
SELECT name, id FROM table2 AS word2 WHERE name LIKE '% word2 %'
SELECT name, id FROM table2 AS word3 WHERE name LIKE '% word3 %'
JOIN word1, word2, word3 WHERE word1.id == word2.id
OR word2.id == word3.id
order by count of matches of each word
insert relationships into map table
end
</code></pre>
<p>I've never designed a search algorithm before, so any help you could lend is much appreciated. I'm having fun figuring this out, but I thought I'd reach out and get some advice from the pro's out there.</p>
<p>Cheers!</p>
<p><strong>Update:</strong> A co-worker recommended I check out a website called <a href="https://www.mturk.com/mturk/welcome" rel="nofollow">mechanical turk</a>, which turned out to be the most cost-effective way of mapping the categories. All I had to do was build a simple form and it wound costing approximately $3.00 per thousand matches.</p>
http://stackoverflow.com/questions/1792031/where-can-i-find-an-excellent-database-search-engine-script0Where can I find an excellent database search engine script?Gal2009-11-24T18:36:49Z2009-11-24T21:50:07Z
<p>I've been looking for PHP, SQL open scripts on retrieving data from DB according to search terms. Now, every script I stumbled upon would not go well at this:</p>
<blockquote>
<p>say I'm looking for "<em>barack obama's
gay rights policy</em>" ok? but in the DB
there's "<em>the obama policy on gays and
their rights - an honest article</em>". Albeit this is a pertinent result,
<strong>a regular search with wildcards wouldn't
retrieve anything.</strong></p>
</blockquote>
<p>Do you have an idea how to tackle this? I would hate to write one on my own and plus it's an error-prone method. Obviously a ton of websites use this mechanism, I just haven't been lucky at finding anything like that.</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1186741/enterprise-search-engine-development-asking-for-advice1enterprise search engine development asking for adviceGeorge22009-07-27T06:38:48Z2009-11-24T20:22:56Z
<p>Hello everyone,</p>
<p>I am asked to either deploy or develop an enterprise (intranet) search engine which could index all web pages of a couple of internal servers, and have a search portal to display all related content, like what Google is doing but for intranet.</p>
<p>Any advice how to develop or deploy quickly? I have heard of Microsoft FAST product, not sure whether it is for this purpose?</p>
<p>thanks in advance,
George</p>
http://stackoverflow.com/questions/1615330/un-published-items-showing-in-drupal-search-results-google-search-appliacne2Un-Published items showing in Drupal search results (google search appliacne)easement2009-10-23T19:03:44Z2009-11-24T20:12:31Z
<p>I inherited a Drupal 5 site recently and have a series of enhancements to make. Several of then revolve around search results.</p>
<ol>
<li><p>Unpublished pages showing up in
search engine results. Some of these
are old pages, others are recently
unpublished. All are correctly
marked as unpublished in the CMS and
are still showing up. </p></li>
<li><p>Outdated pages are showing up from the search engine. The URL path structure changed and those items are old results in the DB.</p></li>
</ol>
<p>From what I can tell the site uses Google Search Appliance(GSA) for the search rather than the default Drupal search. Is there a way I can be certain that it's using GSA other than seeing the module enabled?</p>
<p>If it is GSA it seems that I could get someone with access to the GSA to rebuild the search results on the site. Is this correct?</p>
<p>If rebuilding the search results is the right way to go about it, it seems whenever a fair amount of content is removed from the site I'll need to get someone to rebuild the search. Is there a better/automatic way?</p>
http://stackoverflow.com/questions/1791691/vim-how-to-move-the-result-of-a-search-to-the-beginning-of-the-file2Vim - How to move the result of a search to the beginning of the file?lk2009-11-24T17:37:29Z2009-11-24T18:02:14Z
<p>I want to search some text and move the entire line where the text belongs to the beginning of the file. Just that.</p>
http://stackoverflow.com/questions/1791806/crm-dynamics-search-wildcard0CRM Dynamics Search wildCardBee gud2009-11-24T17:55:37Z2009-11-24T17:55:37Z
<p>Hi there</p>
<p>I'm exploring Dynamics CRM 4 and when I search a record
for example, a contact, ex. Abcd, Dynamics is searching by Abcd*,
including, by default, the WildCard in the end. </p>
<p>Is there any way to also include the Wild Card, by default, in the beggining?
Ex. Abcd --> <em>Abcd</em> </p>
http://stackoverflow.com/questions/1080274/scroll-uitableview-so-that-the-header-isnt-visible1Scroll UITableView so that the header isn't visibleDASKAjA2009-07-03T17:33:11Z2009-11-24T17:52:27Z
<p>I've got a UITableView with a UISearchBar as the tableViews.tableHeaderView. Just like the new Mail.app, Notes.app, etc. in 3.0. I want to hide the SearchBar until the user drags it in his sight.</p>
<p>My attempt only works when there're a couple of items in the tableView, so that the tableView actually wants to scroll. I call this in loadView:</p>
<pre><code>NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self._tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
</code></pre>
<p>Nevertheless it seems that Apple handles such a serachbar differently. After draging out the searchbar it doesn't seem to be bounded to the tablecells anymore (in Notes.app, not in Mail.app).</p>
<p>But perhaps Apple has a distinct method for that new 3.0 behaviour, and I just can't find it?</p>
http://stackoverflow.com/questions/1790555/how-to-search-google-for-html-on-a-page0How to search Google for HTML on a page [closed]Rob2009-11-24T14:49:20Z2009-11-24T15:18:21Z
<p>I want to search Google for a specific HTML string and find all pages that have that string in the HTML. For example, find all pages that have: <code><a href="something" class="specificclass" id="specificid">specificstring</a></code>.</p>
<p>Does anyone know how this can be done?</p>
http://stackoverflow.com/questions/1790469/whats-the-quickest-way-to-get-a-list-of-urls-for-a-google-search0What's the quickest way to get a list of URLs for a Google search?Jeremy Rudd2009-11-24T14:37:26Z2009-11-24T14:41:33Z
<p>How do I extract a list of the URLs for a Google Search <a href="http://www.google.com/search?hl=en&lr=&num=100&q=silverlight+success+story&aq=f&oq=&aqi=" rel="nofollow">results page</a>?</p>