search-engine

List of freely available C# recipes

There are a variety of web sites that purport to offer reusable code in some fashion (Krugle, Koders, byteMyCode, et al). These are great for browsing and for learning by reading other people's code, though I find it challenging to actually find something specific. With O'Reilly's cookbook series (Perl Cookbook, Ruby Cookbook, C# Cookbo...

SPHINX search php query, how to display results from an array?

Im beginning to learn sphinx search php api after running this query <?php include('sphinxapi.php'); $cl = new SphinxClient(); $cl->SetServer( "192.168.0.100", 9312 ); $cl->SetMatchMode( SPH_MATCH_ANY ); $result = $cl->Query( "mimmi", "searchtest" ); if ( $result === false ) { echo "Query failed: " . $cl->Ge...

problem with python xgoogle library. How to increase the limit of 10 results?

I use http://www.catonmat.net/blog/python-library-for-google-search/ to make queries at Google search engine but the number of results I get is limited to 10. I used the results_per_page property and I set it to 50, 100 etc. but the number of results didn't changed. Is there a way to get more results? Is there another python lib without ...

Search engine for web app - multi lingual and multibase

I am working on a website project. We have a MySql and a MongoDb base. We want to add a full-text search-engine over these bases (and if it can be linked with PostgreSql it's better). These databases contain multilingual texts but we cannot determine the language. I saw Solr, ElasticSearch and Sphinx, but what is your advice on this ...

No results in Django Haystack search

I've read the getting started documentation and several other examples on the web. And this is what my search_indexes.py looks like: from haystack.indexes import * from haystack import site from models import Entry class EntryIndex(SearchIndex): text = CharField(document=True) headline = CharField(model_attr='headline') sub...

How to create and submit a blogspot sitemap to google?

How to create and submit a blogspot sitemap to google? Please show with an example... ...

problem with same search tab in multiple html pages

I have some ten html pages each page has same search tab, when i click search button from any of the page it navigates to index page with search text passed through query string and displays output on the index page . How can i write click on the index page with search parameters entered from index page search tab and display the results...

Mysql - "Best Match" search algorithm

Let's assume I have a table full of teachers. every teacher has these parameters: Experience Hourly Cost Distance Last Login Total Rating (like an eBay score given by student) the fact is, that I would avoid to give my users those dropdown menus to choose the sorting option, but i would build a search engine smart enough to compute t...

How can I create an efficient MySQL database that auto-complete requests like Google

Hi! I'd like to get some ideas on how I can create an efficient MySQL database that can handle high traffic auto-complete requests like Google's new auto-SERP-update feature. The key to this is, I am trying to take the content of my book and I want to index the text in a way such that the database requests the relevant text in the qu...

Why google index this ?

In this webpage: http://www.alvolante.it/news/pompe_benzina_%E2%80%9Ctruccate%E2%80%9D_autostrada-308391044 there is this image: http://immagini.alvolante.it/sites/default/files/imagecache/anteprima_100/images/rifornimento_benzina.jpg Why this image is indexed if in the robots.txt there is "Disallow: /sites/" ?? You can see that is ...

Intelligently parse user search terms in PHP

I am in the midst of creating a search service for my PHP website and I was wondering how others have gone about intelligently parsing search terms based on quotation marks (and possibly other symbols in the future). In others words, the search term screwdriver hammer might yield an array of ['screwdriver', 'hammer'], but "flathead scr...

Dealing with asterisks in Sphinx results

I'm using Sphinx to search MySQL. One of the results Sphinx returns for a search is M*A*S*H, as in the hit television show. The problem I'm facing is that M*A*S*H is returned for nearly any query made with Sphinx. I'm guessing this is due to the asterisks. If not, then what could the problem be? If the asterisks are causing my probl...

nutch crawler - how to set maximum number of inlinks per host

How can i set maximum number of pages to index per host? i don't want to index all million pages of site, i want to index only first 100000 found pages. ...

Why google index this ?

Possible Duplicate: Why google index this ? In this webpage: http://www.alvolante.it/news/pompe_benzina_%E2%80%9Ctruccate%E2%80%9D_autostrada-308391044 there is this image: http://immagini.alvolante.it/sites/default/files/imagecache/anteprima_100/images/rifornimento_benzina.jpg Why this image is indexed if in the robots.tx...

How to use the OR statement in MySQL while using the LIKE search statement

Hi, I am trying to create a good little search statement that searches muitple fields using the with different search terms depending on what is returned. I am basiclly setting an order in which I want to search if one search term is not found try the next one. However I am using a WHERE clause to seperate search only one type of data....

Sitemap for a site with a large number of dynamic subdomains

Hi, I'm running a site which allows users to create subdomains. I'd like to submit these user subdomains to search engines via sitemaps. However, according to the sitemaps protocol (and Google Webmaster Tools), a single sitemap can include URLs from a single host only. What is the best approach? At the moment I've the following stru...

StackExchange site for SEO

Which StackExchange site do I use to ask questions about SEO? ...

key word research - Please consider key word phrase - docx converter in google.

why did not docxconverter.com show up when I type docx converter in google. The closest match is docx-converter.com. My question 1 : What are the reasons for www.docxconverter.com not showing up? My question 2 : Which among the domain www.docxconverter.com and www.docx-converter.com is friendly with keyword phrase docx converter? and W...

P2P Search Engine yacy: where is the source code ?

http://www.google.fr/search?q=yacy+OPENSOURCE YaCy is free software (GPL-licensed) and open source. but I can't seem to find where the source code is for download on http://yacy.net/ ...

(Rails) How to implement search when all metadata is found in has_many_polymorphs models

Hello, I have a Page model. The Page model consists mainly of just the page name, however the actual page content is made up by many page components using has_many_polymorphs. Each of these page components also has a name and the linked component may contain more data, such as date values, textual content, images or other files. This h...