Skip to main content

Successfully installed and implemented Google Mini

Google Mini is Google's integrated hardware and software solution to index your organization's digital assets. You can learn more about Google Mini here http://www.google.com/enterprise/mini/.

Earlier our client, was using Microsoft's Index Server to index their digital assets. This index server was shared by several websites and is slowing things a bit. The server, I guess reached its capacity and could not crawl and index any new files added. We were looking at alternative solutions and stumbled upon the Mini.

Google Mini is a powerful search appliance in a blue box of the size of a large Pizza Hut pizza box. It is very easy to set it up and configure. The whole things takes around an hour or so to have the basic search solution up and running. All you have to do, is to tell the Mini what URL paths it has to index and bang, the Mini is on its feet crawling the site.

Things get a little tough and confusing when you start to change the look and feel of the results. To change the look and feel of the search results, we got to modify the style sheet (XSLT) that Google Appliance uses. In that we can configure our own header, menu and footer to integrate the search solution within the corporate website. This might take a while but trust me it is easy if you know how to tweak the XSLT. We can have more than one look and feel( front end) for our search results. Google Mini also lets us define our own collections to have pointed searches. A collection is a set of URL paths.

You can find the solution we implementd here http://search.dcoz.dc.gov/.

Overall, we are extremely satisfied with the end result. The search is very fast and the Return on Investment is huge.

If you have any questions on Google Mini, please leave a comment and I'll be glad to help you out.

Comments

Popular posts from this blog

Clear Validation Errors and Validation Summary messages

ASP.net built in validation does not provide us a straight forward to clear all the validation errors. This would be really helpful while resetting a form. The reset html button would simply reset the form values but will not clear the validation errors. The following javascript code snippet can be used to clear the validation error messages. Have a reset button on your form and call the following js function onclick. <input type="reset" onclick="HideValidationErrors();" /> function HideValidationErrors() { //Hide all validation errors if (window.Page_Validators) for (var vI = 0; vI < Page_Validators.length; vI++) { var vValidator = Page_Validators[vI]; vValidator.isvalid = true; ValidatorUpdateDisplay(vValidator); } //Hide all validaiton summaries if (typeof (Page_ValidationSummaries) != "undefined") { //hide the validation summaries ...

Find the cause of poor performance in Sql Server

I found the following two part article by Gail Shaw on Simple-Talk really helpful in trouble shooting poorly performing queries in Sql Server. The articles talks about spotting poorly performing queries with the help of the Profiler, understand Sql Server Query plans and fine tune the peformance using proper indexes. Part 1: http://tinyurl.com/ccl6gj Part 2: http://tinyurl.com/okcuqg

SharePoint: Comparing dates in XSLT

In one of my sharePoint projects, I had to compare a date with the current date in XSLT. As it turned out, there is no support for date comparision in XSLT. This is how I went about doing it. The trick involves converting the date string into a number Say the date is in ISO format YYYY-MM-DDTHH:MM:SSZ (for example, 2001-01-21T22:54:47Z). Say we have a variable DueDate <xsl:variable name="DueDate" select="'2001-01-21T22:54:47Z'"> Replace the dashes in the string with empty string Take the first 10 character in the date sring convert the string to number number(translate(substring(@DueDate,1,10),'-','')) On doing the above we get: 20010121 We can do the same thing with the date to compare. We can compare the duedate with the current date in SharePoint as follows number(translate(substring(@DueDate,1,10),'-','')) & lt; number(translate(substring(ddwrt:TodayIso(),1,10),'-','')) You can apply the same log...