Now that April is here, I thought it would be neat to look back at what our readers found most interesting last month. Below are the top five blog posts Perficient’s life sciences practice wrote in March – they’re ranked in order of popularity, with number one being the most viewed piece.
Posts Tagged ‘google search appliance’
Search. Open. Close. Open. Close. Save Me, Google Search!
If you look at the numbers, it’s evident that Google is the leader when it comes to web search. There’s no contest. So, it should be no surprise they also happen to be the champion of enterprise search, enabling companies to quickly and accurately scour their multitude of databases all at once across the […]
Perficient adds 7th & 8th GSA Qualified Deployment Specialists
We’re on a roll! Cody Coggins and Narbeh Yousefian have joined the elite team of Google Search Appliance (GSA) Qualified Deployment Specialists. They join existing GSA specialists Anu Pidaparti, Allen Han, Alok Gupta, Shruti Sundaresh, Yogesh Dhavale, and myself. The 4-part certification process is rigorous and designed to validate the experience of individuals among search […]
Easier FDA Audits With Google Search Appliance
The U.S. government recently disclosed the amount of time it takes to comply with the FDA’s requirements for the reporting and recordkeeping of human drugs and biologics, related to Investigational New Drug (IND) applications. It probably won’t come as a surprise that it takes an exhausting 22,801,297 total hours. Yes, you read that correctly.
Google Search Appliance Connector Development: Discovery Phase
Sorry… this post is not going to teach you how to build a connector. Maybe next time. Instead, I am going back a little earlier in the process. I want to describe the process for qualifying our ability to build a new connector in the first place. How do we estimate the level of effort? How do we […]
How to retrieve password for GSA connectors?
Sometimes you may need know the password used to configure a connector. Here is simple Java program that can be used to do that. Please note this only works for GSA 3.x connector. public class DecrpytConnectorPassword { private static String fullPahtToCMKeyStore = “connector_manager.keystore”; private static String fullPahtToConnectorPorperties = “myConnector.properties”; public static void main(String[] args) throws […]
Perficient Adds 6th GSA Qualified Deployment Specialist
I would like to congratulate Anu Pidaparti, Lead Technical Consultant, for achieving her Google Search Appliance (GSA) Qualified Deployment Specialist certification. Anu is the 6th GSA Qualified Deployment Specialist on our Google team. The 4-part certification process is rigorous and designed to validate the experience of individuals among search partners. The qualification process includes certification […]
How to Support Sitelinks Search Box with Your Search Solution
I recently helped one of our clients configure their website to get sitelinks search box working. The following is a brief recap of my work. [Although metlife.com is used as an example in this post, I have had no working relationship with metlife.com] In early September, Google announced an improvement to sitelinks search box, which […]
Zen and the Art of Search Statistics
Yesterday a client asked me what Key Performance Indicators (KPIs) they should be tracking on their public site search. At first I was afraid I would not be able to answer this question – I don’t know their business or website nearly as well as they do. I know the wide variety of statistics that are […]
Document filter inside out (p4): work with Lister/Retriever Model
In last installment, we carefully examined the usage of document filters in creating feed XML. Feed protocol is a push mechanism for the content source to send information to GSA. Since GSA connector framework 3.0, GSA introduced a Lister/Retriever model, which was first implemented in File System Connector. The connector is no longer using the […]
Document filter inside out(part 3): the anatomy working with feed
In this installment, we will discuss how the document filter is utilized by Connector Manager to achieve its functionality. Sometimes it’s very easy to show what’s happening with the code itself. I duplicated many section from Google site, and also provide link to the original source. Since Google engineers keep updating their implementation, the observation […]
Document filter inside out (part 2): the configuration
Last time, we discussed the basics about document filter. In this installment, we will talk about practical aspects of document filter. How to configure document filters? Google had a document explaining the usage of document filters. There are two ways you can configure document filters. The first is at Connector Manager level, specifically within <Tomcat>/webapps/connector-manager/WEB-INF/documentFilters.xml. […]