search-engine

What is a good search engine for embedding in a web site [closed]

試著忘記壹切 提交于 2019-11-30 05:29:49
I am thinking of changing my web site's homegrown search engine. Before I break out Visual Studio, I wondered if anyone can suggest an alternative that gives me what I need. This being: Works with an ASP.NET site (is a .NET project) Creates a file-based index Fast search across hundreds or thousands of pages Performs word-stemming to find variations upon words Gives full control over the output styles Is cheap (or better still, free!) The .NET version of Lucene is what we've been using. It meets all of your criteria. You can't really beat Google Site Search for this. It's fully customizable -

Is there a search engine that will give a direct answer? [closed]

荒凉一梦 提交于 2019-11-30 03:57:22
I've been wondering about this for a while and I can't see why Google haven't tried it yet - or maybe they have and I just don't know about it. Is there a search engine that you can type a question into which will give you a single answer rather than a list of results which you then have to trawl through yourself to find what you want to know? For example, this is how I would design the system: User’s input: “Where do you go to get your eyes tested?” System output: “Opticians. Certainty: 95%” This would be calculated as follows: The input is parsed from natural language into a simple search

Internationalization and Search Engine Optimization

99封情书 提交于 2019-11-29 23:09:09
I'd like to internationalize my site such that it's accessible in many languages. The language setting will be detected in the request data automatically, and can be overridden in the user's settings / stored in the session. My question pertains to how I should display the various versions of the same page based upon language in terms of the pages' URL's. Let's say we're just looking at the index page of http://www.example.com/ , which defaults to English. Now if a French-speaker loads the index page, should I simply keep the URL as http://www.example.com/ , or should I have it redirect to

Connect to SphinxQL through Linux command-line

微笑、不失礼 提交于 2019-11-29 20:42:55
I am trying to connect to SphinxQL server through Linux command-line this way: > mysql -P 9306 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) My Sphinx config file has 2 listen entries: listen = 9312 listen = 9306:mysql41 searchd daemon is running: > ps ax | grep searchd 10727 ? S 0:00 /usr/local/sphinx/bin/searchd 10728 ? Sl 0:00 /usr/local/sphinx/bin/searchd Regular search queries work perfectly: > /usr/local/sphinx/bin/search StackOverflow | more Sphinx 2.0.4-release (r3135) Copyright (c) 2001-2012, Andrew Aksyonoff Copyright (c) 2008-2012, Sphinx

Are search engines going to see my dynamically created content in Bootstrap tabs?

点点圈 提交于 2019-11-29 20:25:24
I have a page index.php with 3 Bootstrap tabs in it, and for each tab I am generating its content after user clicks on it. For example: when page is loaded I will execute SQL query that will get data from database only for first tab. when user clicks on the second tab, I am executing a query that will take data and display it in selected tab. Is this good approach? Is Google going too see all that data when it index the page containing all this tabs? I do not want to pull all data at once because of performance issues. Here is my sample code, so please tell me if this is a good approach: index

How reliable is ElasticSearch as a primary datastore against factors like write loss, data availability

为君一笑 提交于 2019-11-29 19:56:37
I am working on a project with a requirement of coming up with a generic dashboard where a users can do different kinds of grouping, filtering and drill down on different fields. For this we are looking for a search store that allows slice and dice of data. There would be multiple sources of data and would be storing it in the Search Store. There may be some pre-computation required on the source data which can be done by an intermediate components. I have looked through several blogs to understand whether ES can be used reliably as a primary datastore too. It mostly depends on the use-case we

Is there a good indexing / search engine for Node.js? [closed]

删除回忆录丶 提交于 2019-11-29 18:56:40
I'm looking for a good open source (with LGPL or a permissive license) indexing engine for a node.js application, something like Lucene. I'm looking for in-process indexing and search and am not interested in indexing servers like Sphinx or Solr. I am not afraid to create bindings for a C/C++ library either so I'm open to those kind of suggestions as well. So far I've found node-clucene which doesn't seem to be actively maintained anymore (and has several open issues) I could create my own binding for CLucene but it seems to be quite sparsely maintained and its current version is also quite

Class 'ZendSearch\\Lucene\\Lucene' not found ZendFramework2

故事扮演 提交于 2019-11-29 18:05:30
I've installed ZendSearch with composer using these commands: $ cd /var/www/CommunicationApp/vendor/ $ git clone https://github.com/zendframework/ZendSearch.git ZendSearch $ cd ZendSearch/ $ curl -s https://getcomposer.org/installer | php $ php composer.phar install And I've installed Zendskeleton according to GITHUB So, I don't know What I'm missing here. Than, in the same book , it teaches how to use ZendSearch, but I'm not getting the same results, instead I'm getting a Fatal error: Fatal error: Class 'ZendSearch\Lucene\Lucene' not found in /var/www/CommunicationApp/module/Users/src/Users

How to maintain SEO while using JQuery to show hidden divs [closed]

自作多情 提交于 2019-11-29 17:16:33
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . Im working with jquery ui on many of my websites and I am concerned that any content that is in hidden divs that will be used for a dialog is not search engine friendly and I would like to find out if: Is content

How to extract information from ODP accurately? [closed]

时光怂恿深爱的人放手 提交于 2019-11-29 16:27:54
I am building a search engine in python. I have heard that Google fetches the description of pages from the ODP ( Open Directory Project ) in case Google can't figure out the description using the meta data from the page... I wanted to do something similar. ODP is an online directory from Mozilla which has descriptions of pages on the net, so I wanted to fetch the descriptions for my search results from the ODP. How do I get the accurate description of a particular url from ODP, and return the python type "None" if I couldn't find it (Which means ODP has no idea what page i am looking for)? PS