<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MC+A &#187; Google Search Appliance</title>
	<atom:link href="http://www.mcplusa.com/blog/category/google-search-appliance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mcplusa.com</link>
	<description>Connecting Business Intellingence</description>
	<lastBuildDate>Tue, 17 Jan 2012 21:54:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Displaying Search History in XSLT on your Google Mini or Google Search Appliance</title>
		<link>http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/</link>
		<comments>http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 13:32:11 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Recent Searches]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/</guid>
		<description><![CDATA[The Steps To Implement Search History On A Google Search Appliance or Google Mini A few weeks ago there was a thread on the Google Groups regarding how to display search history on a Google Search Appliance query results page.&#160; Our approach typically at MC+A is to utilize the xslt as much as possible as [...]]]></description>
			<content:encoded><![CDATA[<h3>The Steps To Implement Search History On A Google Search Appliance or Google Mini</h3>
<p>A few weeks ago there was a thread on the Google Groups regarding how to display search history on a <a href="/solutions/enterprise-search/google-search-appliance/">Google Search Appliance</a> query results page.&#160; Our approach typically at MC+A is to utilize the xslt as much as possible as it provides less complicated infrastructure.&#160; Because of this, we tend to utilize JQuery to provide some dynamics features to the interface.&#160; In this case, it’s search history.&#160; This article assumes you have some idea about <a href="http://jquery.com/" rel="nofollow">jQuery</a>, specifically the Ready function.  </p>
<h3>Step 1 – Create A DIV</h3>
<p>Create a HTML DIV in your results page that you would like the history to be displayed.&#160; For example:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;div id=”recentHistory”&gt;No Recent Searches&lt;/div&gt;
</pre>
<p> Note the id that you use for later in this process.  You can also place text with the div that will be displayed until the jQuery finishes loading.  </p>
<h2>Step 2 – Add A Function Call to jQuery.Ready</h2>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function(){
    setHistory(); //Function to set the Div
});</pre>
<h3>Step 3 – Add the Function Call</h3>
<p>The following function relies on 5 other functions:  </p>
<ol>
<li><strong>GetCookieVal</strong> – Get’s the Cookie Value</li>
<li><strong>GetCookie</strong> – Get’s a raw Cookie</li>
<li><strong>DeleteCookie</strong> – Delet&#8217;e’s a Cookie</li>
<li><strong>SetCookie</strong> – Set’s a Cookie</li>
<li><strong>GetParameter</strong> – Get’s a Query String Value</li>
</ol>
<pre class="brush: jscript; title: ; notranslate">
function setHistory(){
    var gsaCollection = getParameter(window.top.location.search.substring(1), &quot;site&quot;);
    var gsaClient = getParameter(window.top.location.search.substring(1), &quot;client&quot;);
    var gsaStylesheet = getParameter(window.top.location.search.substring(1), &quot;proxystylesheet&quot;);
    //var gsaAccess =getParameter(window.top.location.search.substring(1),&quot;a&quot;);
    var recentHistory = &quot;&lt;ul&gt;&quot;;
    var historyTemp = GetCookie(&quot;searchhistory&quot;);
    var history;
    if (historyTemp == null) {
        var q = getParameter(window.top.location.search.substring(1), &quot;q&quot;)
        if ((q == null) || (q == &quot;&quot;)) {
            //no history
            recentHistory = recentHistory + &quot;&lt;li&gt;None&lt;/li&gt;&quot;;
        }
        else {
            recentHistory = recentHistory + &quot;&lt;li&gt;&lt;a href=\&quot;search?site=&quot; + gsaCollection + &quot;&amp;client=&quot; +
            gsaClient +
            &quot;&amp;proxystylesheet=&quot; +
            gsaStylesheet +
            &quot;&amp;access=a&quot; +
            &quot;&amp;q=&quot; +
            q +
            &quot;&amp;output=xml_no_dtd&quot; +
            &quot;\&quot; &gt; &quot; +
            q +
            &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
            SetCookie(&quot;searchhistory&quot;, q, expiry);
        }
    }
    else {
        historyString = new String(historyTemp);
        history = historyString.split(&quot;|&quot;);
        var newHistory = new Array(5);
        var newHistoryString = &quot;&quot;;
        newHistory[0] = getParameter(window.top.location.search.substring(1), &quot;q&quot;);
        newHistoryString = newHistory[0];
        recentHistory = recentHistory + &quot;&lt;li&gt;&lt;a href=\&quot;search?site=&quot; + gsaCollection + &quot;&amp;client=&quot; +
        gsaClient +
        &quot;&amp;proxystylesheet=&quot; +
        gsaStylesheet +
        &quot;&amp;access=a&quot; +
        &quot;&amp;output=xml_no_dtd&quot; +
        &quot;&amp;q=&quot; +
        newHistory[0] +
        &quot;\&quot; &gt; &quot; +
        newHistory[0].replace(‘+’, ‘ ‘) +
        &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
        for (var i = 0; i &lt; history.length &amp; i &lt; 4; i++) {
            newHistory[i + 1] = history[i];
            newHistoryString = newHistoryString + &quot;|&quot; + history[i];
            recentHistory = recentHistory + &quot;&lt;li&gt;&lt;a href=\&quot;search?site=&quot; + gsaCollection + &quot;&amp;client=&quot; +
            gsaClient +
            &quot;&amp;proxystylesheet=&quot; +
            gsaStylesheet +
            &quot;&amp;access=a&quot; +
            &quot;&amp;output=xml_no_dtd&quot; +
            &quot;&amp;q=&quot; +
            history[i] +
            &quot;\&quot; &gt; &quot; +
            history[i].replace(‘+’, ‘ ‘) +
            &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
        }
        SetCookie(&quot;searchhistory&quot;, newHistoryString, expiry);
    }
    recentHistory = recentHistory + &quot;&lt;/ul&gt;&quot;;
    document.getElementById(&quot;recentSearches&quot;).innerHTML = recentHistory;
}
</pre>
<p>I am planning on cleaning up the function and posting it here it its entirety in the next couple of days.; </p>
<p>Reply with a comment to nudge me along if I forget.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Launches New Version of 6.x</title>
		<link>http://www.mcplusa.com/blog/2009/10/google-launches-new-version-of-6-x/</link>
		<comments>http://www.mcplusa.com/blog/2009/10/google-launches-new-version-of-6-x/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 16:45:28 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[6.X]]></category>
		<category><![CDATA[New Release]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/10/google-launches-new-version-of-6-x/</guid>
		<description><![CDATA[Google Business published a video detailing some of the new version of the Appliance(see below).  The new version of the Google Search Appliance has improved and new features in the following areas: Access Control Universal Login SAML Identity SPI Multiple Cookie Domains High Availability GSA Mirroring Administration Real-Time Diagnostics Connectivity Native Integration with SharePoint Faster [...]]]></description>
			<content:encoded><![CDATA[<p>Google Business published a video detailing some of the new version of the Appliance(see below).  The new version of the Google Search Appliance has improved and new features in the following areas:</p>
<h3>Access Control</h3>
<ul>
<li>Universal Login</li>
<li>SAML Identity SPI</li>
<li>Multiple Cookie Domains</li>
</ul>
<h3>High Availability</h3>
<ul>
<li>GSA Mirroring</li>
</ul>
<h3>Administration</h3>
<ul>
<li>Real-Time Diagnostics</li>
</ul>
<h3>Connectivity</h3>
<ul>
<li>Native Integration with SharePoint</li>
<li>Faster ECM Connectivity</li>
<li>Connectivity to Lotus Notes</li>
<li>Expanded Support for File Shares and Databases</li>
</ul>
<h3>Search Quality</h3>
<ul>
<li>Automated Self-Learning Scorer</li>
<li>Composite Collections</li>
<li>Advanced Language Phrase Segmenting</li>
</ul>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/sDFDE4LHblY&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/sDFDE4LHblY&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/jmtpJGpqAXs&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/jmtpJGpqAXs&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/10/google-launches-new-version-of-6-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Authentication with Kerberos on Windows 7 and the Google Search Appliance</title>
		<link>http://www.mcplusa.com/blog/2009/10/authentication-with-kerberos-on-windows-7-and-the-google-search-appliance/</link>
		<comments>http://www.mcplusa.com/blog/2009/10/authentication-with-kerberos-on-windows-7-and-the-google-search-appliance/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 22:11:06 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[DES-CBC-CRC]]></category>
		<category><![CDATA[DES-CBC-MD5]]></category>
		<category><![CDATA[Kerberos]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/10/authentication-with-kerberos-on-windows-7-and-the-google-search-appliance/</guid>
		<description><![CDATA[If you are an early adopter of Windows 7 and you own a Google Search Appliance, be sure to set the following local policy so that Kerberos will be enabled: Local Security Policy Local Policies Security Options Network Security: Configure encryption types allowed for Kerberos Enabling all options under Network Security: Configure encryption types allowed [...]]]></description>
			<content:encoded><![CDATA[<p>If you are an early adopter of Windows 7 and you own a Google Search Appliance, be sure to set the following local policy so that Kerberos will be enabled:</p>
<ul>
<li>Local Security Policy
<ul>
<li>Local Policies
<ul>
<li>Security Options
<ul>
<li>Network Security: Configure encryption types allowed for Kerberos</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>Enabling all options under <em>Network Security: Configure encryption types allowed for Kerberos</em></p>
<p><a href="http://www.mcplusa.com/wp-content/uploads/2009/10/clip_image001.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="clip_image001" border="0" alt="clip_image001" src="http://www.mcplusa.com/wp-content/uploads/2009/10/clip_image001_thumb.jpg" width="503" height="362" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/10/authentication-with-kerberos-on-windows-7-and-the-google-search-appliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hidden Features in the Google Search Appliance 6.0 Part 4</title>
		<link>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0/</link>
		<comments>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:28:07 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[GSA 6.0 Features]]></category>
		<category><![CDATA[New Release]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0/</guid>
		<description><![CDATA[DNS Override Often during our implementations we find that DNS is not set up properly for the DMZ or other vlan.  In these cases, it would be great if you could specify a hosts file on the appliance.  In version 6.0 of the appliance, you can. The administration override for DNS can be found here: [...]]]></description>
			<content:encoded><![CDATA[<h2>DNS Override</h2>
<p>Often during our implementations we find that DNS is not set up properly for the DMZ or other vlan.  In these cases, it would be great if you could specify a hosts file on the appliance.  In version 6.0 of the appliance, you can.</p>
<p>The administration override for DNS can be found here:</p>
<p><a href="http://youappliance:8000/EnterpriseController?actionType=dns">http://yourappliance:8000/EnterpriseController?actionType=dns</a></p>
<p><a href="http://www.mcplusa.com/wp-content/uploads/2009/09/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.mcplusa.com/wp-content/uploads/2009/09/image_thumb2.png" border="0" alt="image" width="504" height="346" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Results of MC+A&#8217;s third quarter customer survey</title>
		<link>http://www.mcplusa.com/blog/2009/09/results-of-mcas-third-quarter-customer-survey/</link>
		<comments>http://www.mcplusa.com/blog/2009/09/results-of-mcas-third-quarter-customer-survey/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 14:26:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Customer Suvey]]></category>
		<category><![CDATA[Google Search Appliance; Q3 2009]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/09/results-of-mcas-third-quarter-customer-survey/</guid>
		<description><![CDATA[Google Search Appliance customers typically find value in the product In August, we published our first public survey here.   Our goal was to explore how many of the basic features of the Google Search Appliance were being implemented by customers of the product.  We promised to share the results of the survey when we completed [...]]]></description>
			<content:encoded><![CDATA[<h2>Google Search Appliance customers typically find value in the product</h2>
<p>In August, we published our first public survey <a href="http://www.mcplusa.com/blog/2009/08/mca-google-search-appliance-maturity-matrix/" target="_blank">here</a>.   Our goal was to explore how many of the basic features of the Google Search Appliance were being implemented by customers of the product.  We promised to share the results of the survey when we completed it.  After 6 weeks, we’ve decided to wrap up this survey and begin to start planning for the next one next quarter.  Here are the results are our observations of the survey.</p>
<h3>Summary</h3>
<p>At the time of this writing, only 18 responses were received.  The number of responses received makes the survey generally statistically insignificant.  However, the responses fall in line with our previous expectations.  We also feel that most of the responses were from our customers and not of the general population of Google Enterprise customers.  This would mean that that would be mostly in the United States and a systems integrator would have more involvement with them then of a typical Google Enterprise customer.</p>
<p>Overall,</p>
<ul>
<li>Customers think the Google Search Appliance provides value</li>
<li>Customers are typically not investing significantly in their implementation(beyond the cost of the GSA).</li>
<li>Customers are not using OneBoxes.</li>
<li>Most customers could be using their appliances to crawl more content.</li>
</ul>
<p>We’ll begin to create another survey in October, conduct it in November and publish it in December.  If you have input for the survey, please <a href="http://www.mcplusa.com/contact/" target="_blank">contact us</a>.</p>
<div id="image-results">
<a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/model_owned.png"><img class="size-medium wp-image-780" title="Google Search Appliances Owned" src="http://www.mcplusa.com/wp-content/uploads/2009/09/model_owned-300x225.png" alt="Google Search Appliances Owned" width="300" height="225" /></a></p>
<p><a id="group"  href="http://www.mcplusa.com/wp-content/uploads/2009/09/production_appliances_owned.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/production_appliances_owned-300x225.png" alt="Production Appliance" title="Production Appliance" width="300" height="225" class="size-medium wp-image-781" /></a></p>
<p><a id="group"  href="http://www.mcplusa.com/wp-content/uploads/2009/09/number_sources.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/number_sources-300x225.png" alt="Number of Sources Indexed" title="Number of Sources Indexed" width="300" height="225" class="size-medium wp-image-782" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/documents_indexed.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/documents_indexed-300x225.png" alt="Number of Documents Indexed" title="Number of Documents Indexed" width="300" height="225" class="size-medium wp-image-784" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/source_protection.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/source_protection-300x225.png" alt="How are Source Protected" title="How are Source Protected" width="300" height="225" class="size-medium wp-image-785" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/unique_experiences.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/unique_experiences-300x225.png" alt="How many Unique User Experiences are Deployed" title="How many Unique User Experiences are Deployed" width="300" height="225" class="size-medium wp-image-786" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/oneboxes_implemented.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/oneboxes_implemented-300x225.png" alt="Number of OneBoxes" title="Number of OneBoxes" width="300" height="225" class="size-medium wp-image-787" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/gsa_value.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/gsa_value-300x225.png" alt="Did GSA provide Value" title="Did GSA provide Value" width="300" height="225" class="size-medium wp-image-788" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/total_cost_hardware.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/total_cost_hardware-300x225.png" alt="Total Cost of Hardware" title="Total Cost of Hardware" width="300" height="225" class="size-medium wp-image-789" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/services_cost.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/services_cost-300x225.png" alt="Cost of Services" title="Cost of Services" width="300" height="225" class="size-medium wp-image-790" /></a></p>
<p><a id="group" href="http://www.mcplusa.com/wp-content/uploads/2009/09/employees.png"><img src="http://www.mcplusa.com/wp-content/uploads/2009/09/employees-300x225.png" alt="Number of Employees" title="Number of Employees" width="300" height="225" class="size-medium wp-image-792" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/09/results-of-mcas-third-quarter-customer-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hidden Features in the Google Search Appliance 6.0 release &#8211; Part 3</title>
		<link>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-3/</link>
		<comments>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-3/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 20:44:38 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Google Search Appliance; GSA 6.0 Features]]></category>
		<category><![CDATA[New Release]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-3/</guid>
		<description><![CDATA[Feed Files Awaiting Processing If you are a developer of external feeds to the Google Search Appliance, you spend a lot of your time waiting for feed process to move from the “Feeds” page to update.&#160; There is an new feature to view the remaining count of documents waiting to be processed.&#160; This can be [...]]]></description>
			<content:encoded><![CDATA[<h2>Feed Files Awaiting Processing</h2>
<p>If you are a developer of external feeds to the <a href="http://www.google.com/enterprise/search/gsa.html" target="_blank">Google Search Appliance</a>, you spend a lot of your time waiting for feed process to move from the “Feeds” page to update.&#160; There is an new feature to view the remaining count of documents waiting to be processed.&#160; This can be accessed by going to /getbacklogcount on the back of the feed service port 19900.&#160; Try it out:</p>
<p><a href="http://yourappliance:19900/getbacklogcount">http://yourappliance:19900/getbacklogcount</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last Call For Survey Responses</title>
		<link>http://www.mcplusa.com/blog/2009/09/last-call-for-survey-responses/</link>
		<comments>http://www.mcplusa.com/blog/2009/09/last-call-for-survey-responses/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 15:27:02 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Appliance]]></category>
		<category><![CDATA[Customer Feedback]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Spreadsheet]]></category>
		<category><![CDATA[Survey]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/09/last-call-for-survey-responses/</guid>
		<description><![CDATA[A few weeks ago, I published a request for responses to a simple survey regarding how customers are using their Google Search Appliances.&#160; After much arm twisting we’ve managed to get a few people to respond and are going to publish our findings here on this blog at some point on Friday.&#160; If you have [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, I published a request for responses to a simple survey regarding how customers are using their <a href="http://www.google.com/enterprise/search/gsa.html" target="_blank">Google Search Appliances</a>.&#160; After much arm twisting we’ve managed to get a few people to respond and are going to publish our findings here on this blog at some point on Friday.&#160; If you have not done so, please fill the survey out.&#160; It will literally will take less than one minute.&#160; It’s a simple Google Spreadsheet.</p>
<p><a title="https://spreadsheets0.google.com/viewform?formkey=dDZmXzB5cjV2dHBDSmttSnA0UEZyUXc6MA.." href="https://spreadsheets0.google.com/viewform?formkey=dDZmXzB5cjV2dHBDSmttSnA0UEZyUXc6MA..">https://spreadsheets0.google.com/viewform?formkey=dDZmXzB5cjV2dHBDSmttSnA0UEZyUXc6MA..</a></p>
<p><a href="http://www.mcplusa.com/wp-content/uploads/2009/09/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.mcplusa.com/wp-content/uploads/2009/09/image_thumb1.png" width="531" height="320" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/09/last-call-for-survey-responses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Return on Information (ROI) Jumpstart</title>
		<link>http://www.mcplusa.com/blog/2009/09/return-on-information-roi-jumpstart/</link>
		<comments>http://www.mcplusa.com/blog/2009/09/return-on-information-roi-jumpstart/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 20:30:40 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Enterprise Partner]]></category>
		<category><![CDATA[ROI]]></category>
		<category><![CDATA[ROI Jumpstart]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/?p=743</guid>
		<description><![CDATA[With this ROI JumpStart, new GSA users will accelerate their onboarding experience, from purchasing to deploying to getting relevant results to end users.]]></description>
			<content:encoded><![CDATA[<p>A few weeks back Google announced a &#8220;Welcome Package&#8221; for new customers who purchase a Google Search Appliance with a 1 Million document license.  As a Google Enterprise Partner we are excited to be participating in this promotion.</p>
<p><strong>Return on Information</strong><br />
We believe very strongly in enabling clients to manage their technology solutions, and because of this have always offered and strongly suggested our <a href="/solutions/enterprise-search/mca-jumpstart/" title="MC+A Jumpstart">Jumpstart services</a> to all our clients.  What is exciting about this promotion is that new customers will be getting 2 days of consultation on getting your Google solution up and running, for FREE.</p>
<p><a href="http://www.youtube.com/watch?v=95899_GC46s&#038;fmt=18">http://www.youtube.com/watch?v=95899_GC46s</a></p>
<p><strong>The Specifics</strong><br />
From Google:<br />
&#8220;With this ROI JumpStart, new GSA users will accelerate their onboarding experience, from purchasing to deploying to getting relevant results to end users. Our partners will work with your team on site for two days, at no cost to you, sharing proven expertise and the GSA&#8217;s out-of-the-box results and getting your new GSA indexing repositories across your organization.&#8221; </p>
<p><strong>Interested in more information about the ROI Jumpstart Offer?</strong><br />
<a href="/contact">Contact MC+A </a>and we&#8217;ll be happy to discuss the Jumpstart in detail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/09/return-on-information-roi-jumpstart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hidden Features in the Google Search Appliance 6.0 release – Part 2</title>
		<link>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-2/</link>
		<comments>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-2/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 05:21:38 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[6.0]]></category>
		<category><![CDATA[GSA 6.0 Features]]></category>
		<category><![CDATA[New Release]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-2/</guid>
		<description><![CDATA[LDAP Server Authentication Prior to version 6.0, you could perform security trimming via LDAP authentication.&#160; But you always had to maintain a custom list of user accounts.&#160; Now with the release of 6.0.&#160; You can use LDAP groups to list Administrators and Managers. When enabled, you have to additional boxes to list a LDAP group [...]]]></description>
			<content:encoded><![CDATA[<h2>LDAP Server Authentication</h2>
<p>Prior to version 6.0, you could perform security trimming via LDAP authentication.&#160; But you always had to maintain a custom list of user accounts.&#160; Now with the release of 6.0.&#160; You can use LDAP groups to list Administrators and Managers.</p>
<p>When enabled, you have to additional boxes to list a LDAP group for both the manager and administrator roles (see below).</p>
<p><a id="single-image" href="http://www.mcplusa.com/wp-content/uploads/2009/09/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.mcplusa.com/wp-content/uploads/2009/09/image_thumb.png" width="536" height="323" /></a> </p>
<p>Basic information regarding the set up can be found <a href="http://code.google.com/apis/searchappliance/documentation/60/help_gsa/admin_network_ldap.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hidden Features in the Google Search Appliance 6.0 Release &#8211; Part 1</title>
		<link>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-1/</link>
		<comments>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-1/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 14:10:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[6.0]]></category>
		<category><![CDATA[Ranking Framework]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-1/</guid>
		<description><![CDATA[With much publicity, Google release software version 6.0 of the Google Search Appliance(GSA).&#160; They main marketing was focused on GSA^n.&#160; That is that a cluster of GSAs can be combined to index a billion documents.&#160; That is far from many of our customers needs.&#160; This series of blog posts detail some of the hidden gems [...]]]></description>
			<content:encoded><![CDATA[<p>With much publicity, Google release software version 6.0 of the Google Search Appliance(GSA).&#160; They main marketing was focused on GSA^n.&#160; That is that a cluster of GSAs can be combined to index a billion documents.&#160; That is far from many of our customers needs.&#160; This series of blog posts detail some of the hidden gems that can be taken advantage of by the more common implementation.</p>
<h2>Hidden Feature 1 &#8211; Ranking Framework</h2>
<p>In the past couple of years, we often get requests for the GSA to be improved based on the popularity of certain sites or pages.&#160; With the <a href="http://code.google.com/apis/searchappliance/documentation/60/admin_searchexp/ce_improving_search.html#rescoringframework" target="_blank">Ranking Framework</a>, you can do just that.&#160; The Ranking Framework you can specify boosting:</p>
<ol>
<li>Based on a url pattern</li>
<li>Based on a specific url</li>
</ol>
<p>These can been written to a file and via an ATOM post, the GSA will fetch this file and added it to a result policy.&#160; The following is an example file Google’s documentation:</p>
<p>http://www.important.com/ 1   <br />http://very.important.com/ 3    <br />http://not.important.com/ -1    <br />http://www.important.com/personal_stuff –3</p>
<p>You’ll then need to go and save the policy file to crawl the rescoring to occur.&#160; The API include adding and deleting as well.&#160; Good Luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/09/hidden-features-in-the-google-search-appliance-6-0-release-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

