<?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>标点符 &#187; Google</title>
	<atom:link href="http://www.biaodianfu.com/tag/google/feed" rel="self" type="application/rss+xml" />
	<link>http://www.biaodianfu.com</link>
	<description>编译自己的互联网生活</description>
	<lastBuildDate>Wed, 08 Sep 2010 16:22:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>怎样抓取Google的搜索结果页</title>
		<link>http://www.biaodianfu.com/scraping-google-serp.html</link>
		<comments>http://www.biaodianfu.com/scraping-google-serp.html#comments</comments>
		<pubDate>Mon, 06 Sep 2010 15:22:20 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2681</guid>
		<description><![CDATA[Google搜索结果页（SERP）的抓取，对SEO从业人员等都有很大的帮助，通过抓取SERP我们可以监测网站的排名情况、PPC广告的情况、链接流行度等数据。 Google作为最大的搜索引擎，有着最大的抓取程序Googlebot，但是他却禁止其他网站抓取他的页面。Google使用了大量的技术来检测和阻止自动请求。一旦Google检测到自动抓取程序，那么会出现以下几种情况： 提示电脑中了病毒或木马； 提示木马程序，并要求输入验证码； Google会在一段时间内阻止您的IP访问； Google阻止您访问的时间会加长。 Google是怎么检测抓取程序的？可能的方法有： 通过IP 地址，IP地址可以作为用户的唯一标识。 关键词的变化，普通用户不会再极短的时间内查询很多关键词。 抓取频率，每次抓取的频率都要在Google限定的范围内。 隐藏抓取迹象，避免被Google屏蔽。 首先需要的是一个可靠地IP代理列表，代理地址需要每有被Google屏蔽掉。最好准备50-150个代理地址，一旦Google发自动抓取，千万别继续去抓取。 保证更换代理IP以后，你的Cookies也随着变化。 通过在URL中添加&#38;num=100，将搜索结果的暂时数量设置为最大（100）。 不要使用多线程去抓取。 Google对每个关键词，仅提供1000个查询结果。 在适当的时间更换您的代理IP，这是抓取成功的关键。如果你要住区每个关键词300-1000条结果，需要给每个关键词更换一个IP；如果查询的结果小于300个，最好在查询过程中uoxia延迟炒作，延迟10-20秒或真假代理数量。 如果返回的是一个验证码页面，你最好马上停止现在的行为。 下面是一个使用PHP写的抓取Google搜索结果页的代码。代码中主要包括有： 自动代理轮换（使用seo-proxies.com的API），如果你拥有自己的代理IP地址表，可以通过修改代码改变它。如果你有seo-proxies.com的license，可以通过修改scaper.php中的&#8221;USERID&#8221;和&#8221;API-PASSWORD&#8221;来匹配license。 自动从一个搜索结果页爬去其他搜索结果页。 使用联想词来增加搜索结果的数量。 自动发现和移除广告。 将抓取数据已数组方式保存，使用HTML方式或其他格式在前台页面呈现。 你唯一要做的是把抓取的结果储存在数据表中，进行管理。 代码下载：http://www.box.net/shared/mz1d48hg1c]]></description>
			<content:encoded><![CDATA[<p>Google搜索结果页（SERP）的抓取，对SEO从业人员等都有很大的帮助，通过抓取SERP我们可以监测网站的排名情况、PPC广告的情况、链接流行度等数据。</p>
<p>Google作为最大的搜索引擎，有着最大的抓取程序Googlebot，但是他却禁止其他网站抓取他的页面。Google使用了大量的技术来检测和阻止自动请求。一旦Google检测到自动抓取程序，那么会出现以下几种情况：</p>
<ol>
<li>提示电脑中了病毒或木马；</li>
<li>提示木马程序，并要求输入验证码；</li>
<li>Google会在一段时间内阻止您的IP访问；</li>
<li>Google阻止您访问的时间会加长。</li>
</ol>
<p>Google是怎么检测抓取程序的？可能的方法有：</p>
<ul>
<li>通过IP 地址，IP地址可以作为用户的唯一标识。</li>
<li>关键词的变化，普通用户不会再极短的时间内查询很多关键词。</li>
<li>抓取频率，每次抓取的频率都要在Google限定的范围内。</li>
</ul>
<p>隐藏抓取迹象，避免被Google屏蔽。</p>
<ol>
<li>首先需要的是一个可靠地IP代理列表，代理地址需要每有被Google屏蔽掉。最好准备50-150个代理地址，一旦Google发自动抓取，千万别继续去抓取。</li>
<li>保证更换代理IP以后，你的Cookies也随着变化。</li>
<li>通过在URL中添加&amp;num=100，将搜索结果的暂时数量设置为最大（100）。</li>
<li>不要使用多线程去抓取。</li>
<li>Google对每个关键词，仅提供1000个查询结果。</li>
<li>在适当的时间更换您的代理IP，这是抓取成功的关键。如果你要住区每个关键词300-1000条结果，需要给每个关键词更换一个IP；如果查询的结果小于300个，最好在查询过程中uoxia延迟炒作，延迟10-20秒或真假代理数量。</li>
<li>如果返回的是一个验证码页面，你最好马上停止现在的行为。</li>
</ol>
<p>下面是一个使用PHP写的抓取Google搜索结果页的代码。代码中主要包括有：</p>
<ol>
<li>自动代理轮换（使用seo-proxies.com的API），如果你拥有自己的代理IP地址表，可以通过修改代码改变它。如果你有seo-proxies.com的license，可以通过修改scaper.php中的&#8221;USERID&#8221;和&#8221;API-PASSWORD&#8221;来匹配license。</li>
<li>自动从一个搜索结果页爬去其他搜索结果页。</li>
<li>使用联想词来增加搜索结果的数量。</li>
<li>自动发现和移除广告。</li>
<li>将抓取数据已数组方式保存，使用HTML方式或其他格式在前台页面呈现。</li>
</ol>
<p>你唯一要做的是把抓取的结果储存在数据表中，进行管理。</p>
<p>代码下载：<a href="http://www.box.net/shared/mz1d48hg1c">http://www.box.net/shared/mz1d48hg1c</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/scraping-google-serp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用Google Android SDK 来运行apk程序</title>
		<link>http://www.biaodianfu.com/google-android-sdk-install-apk.html</link>
		<comments>http://www.biaodianfu.com/google-android-sdk-install-apk.html#comments</comments>
		<pubDate>Sun, 29 Aug 2010 03:35:43 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[移动互联网]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2623</guid>
		<description><![CDATA[前面写过一个使用Vmware 安装Android的教程。今天要介绍的是使用Google Android SDK 来运行Android，同事在Android里安装应用软件。 step1.Google Android SDK。 SDK下载地址：http://androidappdocs.appspot.com/index.html step2.在运行Google Android SDK之前，还需要做一个工作就是确保自己的电脑已经安装了Java运行环境，如果没有安装，请进入以下地址进行安装。 Java运行环境下载地址：http://www.java.com/zh_CN/ step3.将下载好的SDK解压到电脑里的任意一个目录（最好不要放在中文目录里），我的存放地址是：E:\android-sdk-windows step4.运行android-sdk-windows文件夹下的SDK Setup.exe，出现如下界面。 首先先点击 Cancel（取消），到达如下界面： 点击Settings（设置）进行前期的设置。 如果您访问网站需要代理服务器，则在此处设置代理服务器。进入设置页面主要做的就是把“Force https://&#8230;sources to be fetched using http://&#8230;&#8221;，因为在某些电脑上可能无法使用https进行连接。 接着点击Available Packages 进入如下界面。 选择你需要安装的SDK版本等，你页可以全选上。点击“Install Selected”，程序就会自动进行安装。 step5.安装完毕后就是创建虚拟系统了，点击“ Virtual Devices”出现如下界面： 点击“New&#8230;”创建新的设备。 为你的设备起个名称，选择需要的Android版本，设置SD卡尺寸和设置屏幕分辨率，最好使用默认的HVGA(320*480)，关于手机分辨率的疑问，请查看：各种手机分辨率详解。 所有的都设置完毕后，点击“Create AVD”即创建了设备（创建过程中可能需要等待几分钟），创建后程序会自动返回上一界面，选中你创建的AVD，单击“Start”即可启动设备。 启动过程中会弹出如下界面，根据自己的需要设置即可。 程序会由很长的一段时间停留在如下的界面中，请耐心的等待。 step6.安装应用软件。 安装应用软件的最简单方法是安装“91助手”或“豌豆夹”，但是并不是每台电脑都能成功。 91助手下载地址：http://soft.sj.91.com/ 豌豆夹下载地址：http://wandoujia.com/index.html 我们使用大众点评网的Android进行测试，下载其APK程序：http://android.dianping.com/m/ 如果91助手后豌豆夹能正确的找到设备和连接到设备，只需点击apk程序即可安装。 如果不成功，只能采取手动安装的方法： 首先把需要安装的软件放在 sdk目录的tools文件夹下，如本人的电脑放在E:\android-sdk-windows\tools 运行cmd，在cmd下进入tools目录： cd e:\android-sdk-windows\tools 回车 e: 回车 [...]]]></description>
			<content:encoded><![CDATA[<p>前面写过一个<a href="http://www.biaodianfu.com/windows-vmware-android.html">使用Vmware 安装Android的教程</a>。今天要介绍的是使用Google Android SDK 来运行Android，同事在Android里安装应用软件。</p>
<p><strong>step1.Google Android SDK。</strong></p>
<p>SDK下载地址：<a href="http://androidappdocs.appspot.com/index.html">http://androidappdocs.appspot.com/index.html</a></p>
<p><strong>step2.在运行Google Android SDK之前，还需要做一个工作就是确保自己的电脑已经安装了Java运行环境，如果没有安装，请进入以下地址进行安装。</strong></p>
<p>Java运行环境下载地址：<a href="http://www.java.com/zh_CN/">http://www.java.com/zh_CN/</a></p>
<p><strong>step3.将下载好的SDK解压到电脑里的任意一个目录（最好不要放在中文目录里），我的存放地址是：E:\android-sdk-windows</strong></p>
<p><strong>step4.运行android-sdk-windows文件夹下的SDK Setup.exe，出现如下界面。</strong></p>
<p><img class="alignnone size-full wp-image-2624" title="choose-packages-to-install" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/choose-packages-to-install.png" alt="" width="614" height="370" /></p>
<p>首先先点击 Cancel（取消），到达如下界面：</p>
<p><img class="alignnone size-full wp-image-2625" title="android-sdk-and-avd-manager" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/android-sdk-and-avd-manager.png" alt="" width="606" height="375" /></p>
<p>点击Settings（设置）进行前期的设置。</p>
<p><img class="alignnone size-full wp-image-2626" title="android-sdk-settings" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/android-sdk-settings.png" alt="" width="569" height="362" /></p>
<p>如果您访问网站需要代理服务器，则在此处设置代理服务器。进入设置页面主要做的就是把“Force https://&#8230;sources to be fetched using http://&#8230;&#8221;，因为在某些电脑上可能无法使用https进行连接。</p>
<p>接着点击Available Packages 进入如下界面。</p>
<p><img class="alignnone size-full wp-image-2627" title="install-android-sdk" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/install-android-sdk.png" alt="" width="606" height="375" /></p>
<p>选择你需要安装的SDK版本等，你页可以全选上。点击“Install Selected”，程序就会自动进行安装。</p>
<p><strong>step5.安装完毕后就是创建虚拟系统了，点击“ Virtual Devices”出现如下界面：</strong></p>
<p><img class="alignnone size-full wp-image-2628" title="virtual-devices" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/virtual-devices.png" alt="" width="616" height="394" /></p>
<p>点击“New&#8230;”创建新的设备。</p>
<p><img class="alignnone size-full wp-image-2629" title="create-new-android-virtual-device" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/create-new-android-virtual-device.png" alt="" width="400" height="502" /></p>
<p>为你的设备起个名称，选择需要的Android版本，设置SD卡尺寸和设置屏幕分辨率，最好使用默认的HVGA(320*480)，关于手机分辨率的疑问，请查看：<a href="http://www.biaodianfu.com/qvga-wvga-vga-wqvga-sqvga.html">各种手机分辨率详解</a>。</p>
<p>所有的都设置完毕后，点击“Create AVD”即创建了设备（创建过程中可能需要等待几分钟），创建后程序会自动返回上一界面，选中你创建的AVD，单击“Start”即可启动设备。</p>
<p>启动过程中会弹出如下界面，根据自己的需要设置即可。</p>
<p><img class="alignnone size-full wp-image-2630" title="launch-options" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/launch-options.png" alt="" width="260" height="273" /></p>
<p>程序会由很长的一段时间停留在如下的界面中，请耐心的等待。</p>
<p><a href="http://www.biaodianfu.com/wp-content/uploads/2010/08/nexus-one.png"><img class="alignnone size-full wp-image-2631" title="nexus-one" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/nexus-one.png" alt="" width="638" height="453" /></a></p>
<p><a href="http://www.biaodianfu.com/wp-content/uploads/2010/08/nexus-one-android.png"><img class="alignnone size-full wp-image-2632" title="nexus-one-android" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/nexus-one-android.png" alt="" width="638" height="453" /></a></p>
<p><a href="http://www.biaodianfu.com/wp-content/uploads/2010/08/my-nexus-one.png"><img class="alignnone size-full wp-image-2633" title="my-nexus-one" src="http://www.biaodianfu.com/wp-content/uploads/2010/08/my-nexus-one.png" alt="" width="638" height="453" /></a></p>
<p>step6.安装应用软件。</p>
<p>安装应用软件的最简单方法是安装“91助手”或“豌豆夹”，但是并不是每台电脑都能成功。</p>
<p>91助手下载地址：<a href="http://soft.sj.91.com/">http://soft.sj.91.com/</a></p>
<p>豌豆夹下载地址：<a href="http://wandoujia.com/index.html">http://wandoujia.com/index.html</a></p>
<p>我们使用大众点评网的Android进行测试，下载其APK程序：<a href="http://android.dianping.com/m/">http://android.dianping.com/m/</a></p>
<p>如果91助手后豌豆夹能正确的找到设备和连接到设备，只需点击apk程序即可安装。</p>
<p>如果不成功，只能采取手动安装的方法：</p>
<p>首先把需要安装的软件放在 sdk目录的tools文件夹下，如本人的电脑放在E:\android-sdk-windows\tools</p>
<p>运行cmd，在cmd下进入tools目录：</p>
<p>cd e:\android-sdk-windows\tools 回车</p>
<p>e: 回车</p>
<p>adb install xxxxx.apk 回车（xxxxx.apk为你要安装的文件）。</p>
<p>这样软件就顺利安装到android的设备里了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/google-android-sdk-install-apk.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goo.gl PHP API</title>
		<link>http://www.biaodianfu.com/goo-gl-php-api.html</link>
		<comments>http://www.biaodianfu.com/goo-gl-php-api.html#comments</comments>
		<pubDate>Thu, 29 Jul 2010 04:58:14 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2442</guid>
		<description><![CDATA[很有以前写过一篇Goo.gl的使用方法。里面介绍了一个C#写的Google 短网址服务的API。今天要介绍的是大众需求比较高的PHP版本~ &#60;?php /* API Google URL Shortner marcusnunes.com */ $url = $_GET['url'];                        //URL to short with goo.gl if(!$url){$url = &#8216;http://twitter.com/&#8217;;}    //example $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, &#8216;http://goo.gl/api/url&#8217;);   //goo.gl api url curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, &#8216;user=toolbar@google.com&#38;url=&#8217;.urlencode($url).&#8217;&#38;auth_token=&#8217;.googlToken($url));     $saida = curl_exec($curl); curl_close($curl); if($saida){     $json = json_decode($saida);     echo &#8216;URL encurtada: &#60;br [...]]]></description>
			<content:encoded><![CDATA[<p>很有以前写过一篇<a href="http://www.biaodianfu.com/goo-gl.html">Goo.gl的使用方法</a>。里面介绍了一个C#写的Google 短网址服务的API。今天要介绍的是大众需求比较高的PHP版本~</p>
<blockquote><p>&lt;?php<br />
/*<br />
API Google URL Shortner<br />
marcusnunes.com<br />
*/</p>
<p>$url = $_GET['url'];                        //URL to short with goo.gl<br />
if(!$url){$url = &#8216;http://twitter.com/&#8217;;}    //example</p>
<p>$curl = curl_init();<br />
curl_setopt($curl, CURLOPT_URL, &#8216;http://goo.gl/api/url&#8217;);   //goo.gl api url<br />
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($curl, CURLOPT_POST, 1);<br />
curl_setopt($curl, CURLOPT_POSTFIELDS, &#8216;user=toolbar@google.com&amp;url=&#8217;.urlencode($url).&#8217;&amp;auth_token=&#8217;.googlToken($url));<br />
   <br />
$saida = curl_exec($curl);<br />
curl_close($curl);</p>
<p>if($saida){<br />
    $json = json_decode($saida);<br />
    echo &#8216;URL encurtada: &lt;br /&gt;&lt;br /&gt;&#8217;.$json-&gt;short_url;    //result<br />
}<br />
//goo.gl token<br />
function googlToken($b){<br />
    $i = tke($b);<br />
    $i = $i &gt;&gt; 2 &amp; 1073741823;<br />
    $i = $i &gt;&gt; 4 &amp; 67108800 | $i &amp; 63;<br />
    $i = $i &gt;&gt; 4 &amp; 4193280 | $i &amp; 1023;<br />
    $i = $i &gt;&gt; 4 &amp; 245760 | $i &amp; 16383;<br />
    $j = &#8220;7&#8243;;<br />
    $h = tkf($b);<br />
    $k = ($i &gt;&gt; 2 &amp; 15) &lt;&lt; 4 | $h &amp; 15;<br />
    $k |= ($i &gt;&gt; 6 &amp; 15) &lt;&lt; 12 | ($h &gt;&gt; 8 &amp; 15) &lt;&lt; 8;<br />
    $k |= ($i &gt;&gt; 10 &amp; 15) &lt;&lt; 20 | ($h &gt;&gt; 16 &amp; 15) &lt;&lt; 16;<br />
    $k |= ($i &gt;&gt; 14 &amp; 15) &lt;&lt; 28 | ($h &gt;&gt; 24 &amp; 15) &lt;&lt; 24;<br />
    $j .= tkd($k);<br />
    return $j;<br />
}</p>
<p>function tkc(){<br />
    $l = 0;<br />
    foreach (func_get_args() as $val) {<br />
        $val &amp;= 4294967295;<br />
        $val += $val &gt; 2147483647 ? -4294967296 : ($val &lt; -2147483647 ? 4294967296 : 0);<br />
        $l   += $val;<br />
        $l   += $l &gt; 2147483647 ? -4294967296 : ($l &lt; -2147483647 ? 4294967296 : 0);<br />
    }<br />
    return $l;<br />
}</p>
<p>function tkd($l){<br />
    $l = $l &gt; 0 ? $l : $l + 4294967296;<br />
    $m = &#8220;$l&#8221;;  //must be a string<br />
    $o = 0;<br />
    $n = false;<br />
    for($p = strlen($m) &#8211; 1; $p &gt;= 0; &#8211;$p){<br />
        $q = $m[$p];<br />
        if($n){<br />
            $q *= 2;<br />
            $o += floor($q / 10) + $q % 10;<br />
        } else {<br />
            $o += $q;<br />
        }<br />
        $n = !$n;<br />
    }<br />
    $m = $o % 10;<br />
    $o = 0;<br />
    if($m != 0){<br />
        $o = 10 &#8211; $m;<br />
        if(strlen($l) % 2 == 1){<br />
            if ($o % 2 == 1){<br />
                $o += 9;<br />
            }<br />
            $o /= 2;<br />
        }<br />
    }<br />
    return &#8220;$o$l&#8221;;<br />
}</p>
<p>function tke($l){<br />
    $m = 5381;<br />
    for($o = 0; $o &lt; strlen($l); $o++){<br />
        $m = tkc($m &lt;&lt; 5, $m, ord($l[$o]));<br />
    }<br />
    return $m;<br />
}</p>
<p>function tkf($l){<br />
    $m = 0;<br />
    for($o = 0; $o &lt; strlen($l); $o++){<br />
        $m = tkc(ord($l[$o]), $m &lt;&lt; 6, $m &lt;&lt; 16, -$m);<br />
    }<br />
    return $m;<br />
}<br />
?&gt;</p></blockquote>
<p>下载地址：<a href="http://www.box.net/shared/yob65q20a8">http://www.box.net/shared/yob65q20a8</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/goo-gl-php-api.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google产品经理笔试题&amp;面试题</title>
		<link>http://www.biaodianfu.com/google-pm-interview.html</link>
		<comments>http://www.biaodianfu.com/google-pm-interview.html#comments</comments>
		<pubDate>Sun, 25 Jul 2010 01:10:03 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[无法定义]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2349</guid>
		<description><![CDATA[以下内容整理于网路，可能有些问题并不是来自Google，当时的话很值得思考。~ 1、一辆校车能装下多少个高尔夫球？ 2、如果让你清洗西雅图市所有的窗户，你会对此索价多少？ 3、在一个重男轻女的国家里，每家每户都想生男孩。若一户人家生了一个女孩，便会再生一个，直到生下的是男孩为止。请问这个国家的男女比例是多少？ 4、全世界共有多少位钢琴调音师？ 5、下水道井盖为什么是圆的？ 6、为旧金山市设计一个紧急疏散方案。 7、时钟的指针一天内总共会重合多少次？ 8、你有8个大小一样的球，其中7个重量相同，只有一个略重一些。给你一个天平，而且只准称两次，如何找出重量不同的那个球？ 9、向你8岁的侄子或外甥解释什么是数据库，只能用三个句子。 10、你缩小到只有一枚五分硬币那么高，你的质量也成比例缩小以保持原有密度不变。随后你被扔到一个空的玻璃搅拌器里，搅拌刀片将在60秒后开始运转，你该怎么办？ 11、村子里有100对夫妻，其中每个丈夫都瞒着自己的妻子偷情。村里的每个妻子都能立即发现除自己丈夫之外的其他男人是否偷情，唯独不知道她自己的丈夫到底有没有偷情。村里的规矩不容忍通奸。任何一个妻子，一旦能证明自己的男人偷情，就必须当天把他杀死。村里的女人全都严格照此规矩办事。一天，女头领出来宣布，村里至少有一个丈夫偷情。请问接下来会发生什么事？ 12、假设在一段高速公路上，30分钟之内见到汽车经过的概率是95%。那么，在10分钟内见到汽车经过的概率是多少？ 13、有四个人要在夜里穿过一条悬索桥回到宿营地。可是他们只有一支手电，电池只够再亮17分钟。过桥必须要有手电，否则太危险。桥最多只能承受两个人同时通过的重量。这四个人的过桥速度都不一样：一个需要1分钟，一个需要2分钟，一个需要5分钟，还有一个需要10分钟。他们如何才能在17分钟之内全部过桥？ 14、 如果你看到时钟上面的时间是3：15，那么其时针和分针之间的角度是多少？ 15、将一根木条折成3段之后，可以形成一个三角形的概率有多大？ 16、有两位盲人，他们都各自买了两对黑袜和两对白袜，八对袜了的布质、大小完全相同，而每对袜了都有一张商标纸连着。两位盲人不小心将八对袜了混在一起。 他们每人怎样才能取回黑袜和白袜各两对呢？ 17、有三个人去住旅馆，住三间房，每一间房$10元，于是他们一共付给老板$30，第二天，老板觉得三间房只需要$25元就够了于是叫小弟退回$5给三位客人，谁知小弟贪心,只退回每人$1，自己偷偷拿了$2，这样一来便等于那三位客人每人各花了九元，于是三个人一共花了$27，再加上小弟独吞了不$2，总共是$29。可是当初他们三个人一共付出$30那么还有$1呢？ 18、有一辆火车以每小时15公里的速度离开洛杉矶直奔纽约，另一辆火车以每小时20公里的速度从纽约开往洛杉矶。如果有一只鸟，以30公里每小时的速度和两辆火车同时启动，从洛杉矶出发，碰到另一辆车后返回，依次在两辆火车来回飞行，直到两辆火车相遇，请问，这只小鸟飞行了多长距离？ 19、一个经理有三个女儿，三个女儿的年龄加起来等于13，三个女儿的年龄乘起来等于经理自己的年龄，有一个下属已知道经理的年龄，但仍不能确定经理三个女儿的年龄，这时经理说只有一个女儿的头发是黑的，然后这个下属就知道了经理三个女儿的年龄。请问三个女儿的年龄分别是多少？为什么？ 20、你有两个罐子，50个红色弹球，50个蓝色弹球，随机选出一个罐子，随机选取出一个弹球放入罐子，怎么给红色弹球最大的选中机会？在你的计划中，得到红球的准确几率是多少？ 21、你有一桶果冻，其中有黄色，绿色，红色三种，闭上眼睛，抓取两个同种颜色的果冻。抓取多少个就可以确定你肯定有两个同一颜色的果冻？ 22、对一批编号为1～100，全部开关朝上(开)的灯进行以下操作：凡是1的倍数反方向拨一次开关；2的倍数反方向又拨一次开关；3的倍数反方向又拨一次开关……问：最后为关熄状态的灯的编号。 23、想象你在镜子前，请问，为什么镜子中的影像可以颠倒左右，却不能颠倒上下？ 24、一群人开舞会，每人头上都戴着一顶帽子。帽子只有黑白两种，黑的至少有一顶。每个人都能看到其它人帽子的颜色，却看不到自己的。主持人先让大家看看别人头上戴的是什幺帽子，然后关灯，如果有人认为自己戴的是黑帽子，就打自己一个耳光。第一次关灯，没有声音。于是再开灯，大家再看一遍，关灯时仍然鸦雀无声。一直到第三次关灯，才有劈劈啪啪打耳光的声音响起。问有多少人戴着黑帽子？ 25、有两根不均匀分布的香，香烧完的时间是一个小时，你能用什么方法来确定一段15分钟的时间？ 26、两个圆环，半径分别是1和2，小圆在大圆内部绕大圆圆周一周，问小圆自身转了几周？如果在大圆的外部，小圆自身转几周呢？ 27、1元钱一瓶汽水，喝完后两个空瓶换一瓶汽水，问：你有20元钱，最多可以喝到几瓶汽水？ 28、100白球100黑球，每次拿出两个，如白＋白，则放一个黑球进去，黑＋黑，也放个黑球进去，白＋黑，放个白球进去，直到只剩下一个球为止，问剩下黑球的概率。 29、10个人排队戴帽子，10个黄帽子，9个蓝帽子，戴好后后面的人可以看见前面所有人的帽子，然后从后面问起，问自己头上的帽子，结果一直问了9个人都说不知道，而最前面的人却知道自己头上的帽子的颜色，问是什么颜色，为什么。 30、正方形边长为1，以各个顶点半径为1做弧，在正方形中间有一个公共区域，求面积。 31、1000!有几位数，为什么 3.11的三次方是1331,12的三次方是1728,请问哪个数的三次方是1442897？ 32、在一次酒会上有人作了如下统计：参加酒会的人彼此都碰了杯子，此次酒会共碰杯子45 次，请问有多少人参加了酒会？ 33、一个人的假期有13天下雨，12天上午晴天，11天下午晴天，任何一天上午下午不会同时下雨，请问这个人的假期有多少天？ 34、一只蜗牛从井底爬到井口，每天白天蜗牛要睡觉，晚上才出来活动，一个晚上蜗牛可以向上爬3尺，但是白天睡觉的时候会往下滑2尺，井深10尺，问蜗牛几天可以爬出来？ 35、在一个平面上画1999条直线最多能将这一平面划分成多少个部分？ 36、在太平洋的一个小岛上生活着土人，他们不愿意被外人打扰，一天，一个探险家到了岛上，被土人抓住，土人的祭司告诉他，你临死前还可以有一个机会留下一句话，如果这句话是真的，你将被烧死，是假的，你将被五马分尸，可怜的探险家如何才能活下来？ 37、怎样种四棵树使得任意两棵树的距离相等。 38、27个小运动员在参加完比赛后，口渴难耐，去小店买饮料，饮料店搞促销，凭三个空瓶可以再换一瓶，他们最少买多少瓶饮料才能保证一人一瓶？  39、有两根不均匀分布的香，每根香烧完的时间是一个小时，你能用什么方法来确定一段15分钟的时间？  40、你让工人为你工作７天，给工人的回报是一根金条。金条平分成相连的７段，你必须在每天结束时给他们一段金条，如果只许你两次把金条弄断，你如何给你的工人付费？ 41、5个囚犯，分别按1-5号在装有100颗绿豆的麻袋抓绿豆，规定每人至少抓一颗，而抓得最多和最少的人将被处死，而且，他们之间不能交流，但在抓的时候，可以摸出剩下的豆子数。问他们中谁的存活几率最大？ 42、据说有人给酒肆的老板娘出了一个难题：此人明明知道店里只有两个舀酒的勺子，分别能舀7两和11两酒，却硬要老板娘卖给他2两酒。聪明的老板娘毫不含糊，用这两个勺子在酒缸里舀酒，并倒来倒去，居然量出了2两酒，聪明的你能做到吗？ 43、已知： 每个飞机只有一个油箱， 飞机之间可以相互加油（注意是相互，没有加油机） 一箱油可供一架飞机绕地球飞半圈， 问题：为使至少一架飞机绕地球一圈回到起飞时的飞机场，至少需要出动几架飞机？（所有飞机从同一机场起飞，而且必须安全返回机场，不允许中途降落，中间没有飞机场） 44、门外三个开关分别对应室内三盏灯，线路良好，在门外控制开关时候不能看到室内灯的情况，现在只允许进门一次，确定开关和灯的对应关系？ 45、一个岔路口分别通向诚实国和说谎国。来了两个人，已知一个是诚实国的，另一个是说谎国的。诚实国永远说实话，说谎国永远说谎话。现在你要去说谎国，但不知道应该走哪条路，需要问这两个人。请问应该怎么问？ 46、在一天的24小时之中，时钟的时针、分针和秒针完全重合在一起的时候有几次？都分别是什么时间？你怎样算出来的？]]></description>
			<content:encoded><![CDATA[<p>以下内容整理于网路，可能有些问题并不是来自Google，当时的话很值得思考。~</p>
<p>1、一辆校车能装下多少个高尔夫球？</p>
<p>2、如果让你清洗西雅图市所有的窗户，你会对此索价多少？</p>
<p>3、在一个重男轻女的国家里，每家每户都想生男孩。若一户人家生了一个女孩，便会再生一个，直到生下的是男孩为止。请问这个国家的男女比例是多少？</p>
<p>4、全世界共有多少位钢琴调音师？</p>
<p>5、下水道井盖为什么是圆的？</p>
<p>6、为旧金山市设计一个紧急疏散方案。</p>
<p>7、时钟的指针一天内总共会重合多少次？</p>
<p>8、你有8个大小一样的球，其中7个重量相同，只有一个略重一些。给你一个天平，而且只准称两次，如何找出重量不同的那个球？</p>
<p>9、向你8岁的侄子或外甥解释什么是数据库，只能用三个句子。</p>
<p>10、你缩小到只有一枚五分硬币那么高，你的质量也成比例缩小以保持原有密度不变。随后你被扔到一个空的玻璃搅拌器里，搅拌刀片将在60秒后开始运转，你该怎么办？</p>
<p>11、村子里有100对夫妻，其中每个丈夫都瞒着自己的妻子偷情。村里的每个妻子都能立即发现除自己丈夫之外的其他男人是否偷情，唯独不知道她自己的丈夫到底有没有偷情。村里的规矩不容忍通奸。任何一个妻子，一旦能证明自己的男人偷情，就必须当天把他杀死。村里的女人全都严格照此规矩办事。一天，女头领出来宣布，村里至少有一个丈夫偷情。请问接下来会发生什么事？</p>
<p>12、假设在一段高速公路上，30分钟之内见到汽车经过的概率是95%。那么，在10分钟内见到汽车经过的概率是多少？</p>
<p>13、有四个人要在夜里穿过一条悬索桥回到宿营地。可是他们只有一支手电，电池只够再亮17分钟。过桥必须要有手电，否则太危险。桥最多只能承受两个人同时通过的重量。这四个人的过桥速度都不一样：一个需要1分钟，一个需要2分钟，一个需要5分钟，还有一个需要10分钟。他们如何才能在17分钟之内全部过桥？</p>
<p>14、 如果你看到时钟上面的时间是3：15，那么其时针和分针之间的角度是多少？</p>
<p>15、将一根木条折成3段之后，可以形成一个三角形的概率有多大？</p>
<p>16、有两位盲人，他们都各自买了两对黑袜和两对白袜，八对袜了的布质、大小完全相同，而每对袜了都有一张商标纸连着。两位盲人不小心将八对袜了混在一起。 他们每人怎样才能取回黑袜和白袜各两对呢？</p>
<p>17、有三个人去住旅馆，住三间房，每一间房$10元，于是他们一共付给老板$30，第二天，老板觉得三间房只需要$25元就够了于是叫小弟退回$5给三位客人，谁知小弟贪心,只退回每人$1，自己偷偷拿了$2，这样一来便等于那三位客人每人各花了九元，于是三个人一共花了$27，再加上小弟独吞了不$2，总共是$29。可是当初他们三个人一共付出$30那么还有$1呢？</p>
<p>18、有一辆火车以每小时15公里的速度离开洛杉矶直奔纽约，另一辆火车以每小时20公里的速度从纽约开往洛杉矶。如果有一只鸟，以30公里每小时的速度和两辆火车同时启动，从洛杉矶出发，碰到另一辆车后返回，依次在两辆火车来回飞行，直到两辆火车相遇，请问，这只小鸟飞行了多长距离？</p>
<p>19、一个经理有三个女儿，三个女儿的年龄加起来等于13，三个女儿的年龄乘起来等于经理自己的年龄，有一个下属已知道经理的年龄，但仍不能确定经理三个女儿的年龄，这时经理说只有一个女儿的头发是黑的，然后这个下属就知道了经理三个女儿的年龄。请问三个女儿的年龄分别是多少？为什么？</p>
<p>20、你有两个罐子，50个红色弹球，50个蓝色弹球，随机选出一个罐子，随机选取出一个弹球放入罐子，怎么给红色弹球最大的选中机会？在你的计划中，得到红球的准确几率是多少？</p>
<p>21、你有一桶果冻，其中有黄色，绿色，红色三种，闭上眼睛，抓取两个同种颜色的果冻。抓取多少个就可以确定你肯定有两个同一颜色的果冻？</p>
<p>22、对一批编号为1～100，全部开关朝上(开)的灯进行以下操作：凡是1的倍数反方向拨一次开关；2的倍数反方向又拨一次开关；3的倍数反方向又拨一次开关……问：最后为关熄状态的灯的编号。</p>
<p>23、想象你在镜子前，请问，为什么镜子中的影像可以颠倒左右，却不能颠倒上下？</p>
<p>24、一群人开舞会，每人头上都戴着一顶帽子。帽子只有黑白两种，黑的至少有一顶。每个人都能看到其它人帽子的颜色，却看不到自己的。主持人先让大家看看别人头上戴的是什幺帽子，然后关灯，如果有人认为自己戴的是黑帽子，就打自己一个耳光。第一次关灯，没有声音。于是再开灯，大家再看一遍，关灯时仍然鸦雀无声。一直到第三次关灯，才有劈劈啪啪打耳光的声音响起。问有多少人戴着黑帽子？</p>
<p>25、有两根不均匀分布的香，香烧完的时间是一个小时，你能用什么方法来确定一段15分钟的时间？</p>
<p>26、两个圆环，半径分别是1和2，小圆在大圆内部绕大圆圆周一周，问小圆自身转了几周？如果在大圆的外部，小圆自身转几周呢？</p>
<p>27、1元钱一瓶汽水，喝完后两个空瓶换一瓶汽水，问：你有20元钱，最多可以喝到几瓶汽水？</p>
<p>28、100白球100黑球，每次拿出两个，如白＋白，则放一个黑球进去，黑＋黑，也放个黑球进去，白＋黑，放个白球进去，直到只剩下一个球为止，问剩下黑球的概率。</p>
<p>29、10个人排队戴帽子，10个黄帽子，9个蓝帽子，戴好后后面的人可以看见前面所有人的帽子，然后从后面问起，问自己头上的帽子，结果一直问了9个人都说不知道，而最前面的人却知道自己头上的帽子的颜色，问是什么颜色，为什么。</p>
<p>30、正方形边长为1，以各个顶点半径为1做弧，在正方形中间有一个公共区域，求面积。</p>
<p>31、1000!有几位数，为什么 3.11的三次方是1331,12的三次方是1728,请问哪个数的三次方是1442897？</p>
<p>32、在一次酒会上有人作了如下统计：参加酒会的人彼此都碰了杯子，此次酒会共碰杯子45 次，请问有多少人参加了酒会？</p>
<p>33、一个人的假期有13天下雨，12天上午晴天，11天下午晴天，任何一天上午下午不会同时下雨，请问这个人的假期有多少天？</p>
<p>34、一只蜗牛从井底爬到井口，每天白天蜗牛要睡觉，晚上才出来活动，一个晚上蜗牛可以向上爬3尺，但是白天睡觉的时候会往下滑2尺，井深10尺，问蜗牛几天可以爬出来？</p>
<p>35、在一个平面上画1999条直线最多能将这一平面划分成多少个部分？</p>
<p>36、在太平洋的一个小岛上生活着土人，他们不愿意被外人打扰，一天，一个探险家到了岛上，被土人抓住，土人的祭司告诉他，你临死前还可以有一个机会留下一句话，如果这句话是真的，你将被烧死，是假的，你将被五马分尸，可怜的探险家如何才能活下来？</p>
<p>37、怎样种四棵树使得任意两棵树的距离相等。</p>
<p>38、27个小运动员在参加完比赛后，口渴难耐，去小店买饮料，饮料店搞促销，凭三个空瓶可以再换一瓶，他们最少买多少瓶饮料才能保证一人一瓶？ </p>
<p>39、有两根不均匀分布的香，每根香烧完的时间是一个小时，你能用什么方法来确定一段15分钟的时间？ </p>
<p>40、你让工人为你工作７天，给工人的回报是一根金条。金条平分成相连的７段，你必须在每天结束时给他们一段金条，如果只许你两次把金条弄断，你如何给你的工人付费？</p>
<p>41、5个囚犯，分别按1-5号在装有100颗绿豆的麻袋抓绿豆，规定每人至少抓一颗，而抓得最多和最少的人将被处死，而且，他们之间不能交流，但在抓的时候，可以摸出剩下的豆子数。问他们中谁的存活几率最大？</p>
<p>42、据说有人给酒肆的老板娘出了一个难题：此人明明知道店里只有两个舀酒的勺子，分别能舀7两和11两酒，却硬要老板娘卖给他2两酒。聪明的老板娘毫不含糊，用这两个勺子在酒缸里舀酒，并倒来倒去，居然量出了2两酒，聪明的你能做到吗？</p>
<p>43、已知： 每个飞机只有一个油箱， 飞机之间可以相互加油（注意是相互，没有加油机） 一箱油可供一架飞机绕地球飞半圈， 问题：为使至少一架飞机绕地球一圈回到起飞时的飞机场，至少需要出动几架飞机？（所有飞机从同一机场起飞，而且必须安全返回机场，不允许中途降落，中间没有飞机场）</p>
<p>44、门外三个开关分别对应室内三盏灯，线路良好，在门外控制开关时候不能看到室内灯的情况，现在只允许进门一次，确定开关和灯的对应关系？</p>
<p>45、一个岔路口分别通向诚实国和说谎国。来了两个人，已知一个是诚实国的，另一个是说谎国的。诚实国永远说实话，说谎国永远说谎话。现在你要去说谎国，但不知道应该走哪条路，需要问这两个人。请问应该怎么问？</p>
<p>46、在一天的24小时之中，时钟的时针、分针和秒针完全重合在一起的时候有几次？都分别是什么时间？你怎样算出来的？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/google-pm-interview.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>《Web Analytics 2.0》PDF 电子书下载</title>
		<link>http://www.biaodianfu.com/web-analytics-2-0.html</link>
		<comments>http://www.biaodianfu.com/web-analytics-2-0.html#comments</comments>
		<pubDate>Sat, 29 May 2010 00:30:45 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[电子书籍]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[统计]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2173</guid>
		<description><![CDATA[前面已经推荐过一本《Web Analytics: An Hour a Day》，这次该作者有除了一本《Web Analytics 2.0》，这两本书对于了解Google Analytics真的是非常有用。 《Web Analytics 2.0》目录： Introduction xxi Chapter 1 The Bold New World of Web Analytics 2.0 1 State of the Analytics Union . 2 State of the Industry . 3 Rethinking Web Analytics: Meet Web Analytics 2.0 . 4 The What: Clickstream 7 The How Much: Multiple [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2179" title="Web_Analytics_2_0" src="http://www.biaodianfu.com/wp-content/uploads/2010/05/Web_Analytics_2_0.png" alt="" width="298" height="375" /></p>
<p>前面已经推荐过一本《<a href="http://www.biaodianfu.com/web-analytics-an-hour-a-day.html">Web Analytics: An Hour a Day</a>》，这次该作者有除了一本《Web Analytics 2.0》，这两本书对于了解Google Analytics真的是非常有用。</p>
<p>《Web Analytics 2.0》目录：</p>
<p>Introduction xxi<br />
<strong>Chapter 1 The Bold New World of Web Analytics 2.0 1</strong><br />
State of the Analytics Union . 2<br />
State of the Industry . 3<br />
Rethinking Web Analytics: Meet Web Analytics 2.0 . 4<br />
The What: Clickstream 7<br />
The How Much: Multiple Outcomes Analysis 7<br />
The Why: Experimentation and Testing 8<br />
The Why: Voice of Customer 9<br />
The What Else: Competitive Intelligence 9<br />
Change: Yes We Can! . 10<br />
The Strategic Imperative 10<br />
The Tactical Shift 11<br />
Bonus Analytics 13<br />
<strong>Chapter 2 The Optimal Strategy for Choosing Your Web Analytics Soul Mate 15</strong><br />
Predetermining Your Future Success 16<br />
Step 1: Three Critical Questions to Ask Yourself Before<br />
You Seek an Analytics Soul Mate! 17<br />
Q1: “Do I want reporting or analysis?” 17<br />
Q2: “Do I have IT strength, business strength, or both?” 19<br />
Q3: “Am I solving just for Clickstream or for Web Analytics 2.0?” 20<br />
Step 2: Ten Questions to Ask Vendors Before You Marry Them 21<br />
Q1: “What is the difference between your tool/solution and free tools<br />
from Yahoo! and Google?” 21<br />
Q2: “Are you 100 percent ASP, or do you offer a software version?<br />
Are you planning a software version?” 22<br />
Q3: “What data capture mechanisms do you use?” 22<br />
Q4: “Can you calculate the total cost of ownership for your tool?” 23<br />
Q5: “What kind of support do you offer? What do you include for free,<br />
and what costs more? Is it free 24/7?” 24<br />
Q6: “What features in your tool allow me to segment the data?” 25<br />
Q7: “What options do I have for exporting data from your system into<br />
our company’s system?” 25<br />
Q8: “What features do you provide for me to integrate data from other<br />
sources into your tool?” 26<br />
Q9: “Can you name two new features/tools/acquisitions your company<br />
is cooking up to stay ahead of your competition for the next three years?” 26<br />
Q10: “Why did the last two clients you lost cancel their contracts?<br />
Who are they using now? May we call one of these former clients?” 27<br />
Comparing Web Analytics Vendors: Diversify and Conquer 28<br />
The Three-Bucket Strategy 28<br />
Step 3: Identifying Your Web Analytics Soul Mate<br />
(How to Run an Effective Tool Pilot) . 29<br />
Step 4: Negotiating the Prenuptials: Check SLAs for Your<br />
Web Analytics Vendor Contract . 32<br />
<strong>Chapter 3 The Awesome World of Clickstream Analysis: Metrics 35<br />
</strong>Standard Metrics Revisited: Eight Critical Web Metrics 36<br />
Visits and Visitors 37<br />
Time on Page and Time on Site 44<br />
Bounce Rate . 51<br />
Exit Rate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53<br />
Conversion Rate . 55<br />
Engagement . 56<br />
Web Metrics Demystified . 59<br />
Four Attributes of Great Metrics 59<br />
Example of a Great Web Metric 62<br />
Three Avinash Life Lessons for Massive Success 62<br />
Strategically-aligned Tactics for Impactful Web Metrics 64<br />
Diagnosing the Root Cause of a Metric’s Performance—Conversion 64<br />
Leveraging Custom Reporting 66<br />
Starting with Macro Insights 70<br />
<strong>Chapter 4 The Awesome World of Clickstream Analysis: Practical Solutions 75<br />
</strong>A Web Analytics Primer . 76<br />
Getting Primitive Indicators Out of the Way 76<br />
Understanding Visitor Acquisition Strengths 78<br />
Fixing Stuff and Saving Money 79<br />
Click Density Analysis 81<br />
Measuring Visits to Purchase 83<br />
The Best Web Analytics Report 85<br />
Sources of Traffic 86<br />
Outcomes 87<br />
Foundational Analytical Strategies . 87<br />
Segment or Go Home 88<br />
Focus on Customer Behavior, Not Aggregates 93<br />
Everyday Clickstream Analyses Made Actionable 94<br />
Internal Site Search Analysis 95<br />
Search Engine Optimization (SEO) Analysis 101<br />
Pay Per Click/Paid Search Analysis 110<br />
Direct Traffic Analysis 116<br />
Email Campaign Analysis 119<br />
Rich Experience Analysis: Flash, Video, and Widgets 122<br />
Reality Check: Perspectives on Key Web Analytics Challenges 126<br />
Visitor Tracking Cookies 126<br />
Data Sampling 411 130<br />
The Value of Historical Data 133<br />
The Usefulness of Video Playback of Customer Experience 136<br />
The Ultimate Data Reconciliation Checklist 138<br />
<strong>Chapter 5 The Key to Glory: Measuring Success 145</strong><br />
Focus on the “Critical Few” . 147<br />
Five Examples of Actionable Outcome KPIs . 149<br />
Task Completion Rate 149<br />
Share of Search 150<br />
Visitor Loyalty and Recency 150<br />
RSS/Feed Subscribers 150<br />
% of Valuable Exits 151<br />
Moving Beyond Conversion Rates 151<br />
Cart and Checkout Abandonment 152<br />
Days and Visits to Purchase 153<br />
Average Order Value 153<br />
Primary Purpose (Identify the Convertible) 154<br />
Measuring Macro and Micro Conversions . 156<br />
Examples of Macro and Micro Conversions 158<br />
Quantifying Economic Value . 159<br />
Measuring Success for a Non-ecommerce Website . 162<br />
Visitor Loyalty 162<br />
Visitor Recency 164<br />
Length of Visit 165<br />
Depth of Visit 165<br />
Measuring B2B Websites 166<br />
<strong>Chapter 6 Solving the “Why” Puzzle: Leveraging Qualitative Data 169<br />
</strong>Lab Usability Studies: What, Why, and How Much? . 170<br />
What Is Lab Usability? 170<br />
How to Conduct a Test 171<br />
Best Practices for Lab Usability Studies 174<br />
Benefits of Lab Usability Studies 174<br />
Areas of Caution 174<br />
Usability Alternatives: Remote and Online Outsourced . 175<br />
Live Recruiting and Remote User Research 176<br />
Surveys: Truly Scalable Listening . 179<br />
Types of Surveys 180<br />
The Single Biggest Surveying Mistake 184<br />
Three Greatest Survey Questions Ever 185<br />
Eight Tips for Choosing an Online Survey Provider 187<br />
Web-Enabled Emerging User Research Options . 190<br />
Competitive Benchmarking Studies 190<br />
Rapid Usability Tests 191<br />
Online Card-Sorting Studies 191<br />
Artificially Intelligent Visual Heat Maps 192<br />
<strong>Chapter 7 Failing Faster: Unleashing the Power of Testing and Experimentation 195<br />
</strong>A Primer on Testing Options: A/B and MVT . 197<br />
A/B Testing 197<br />
Multivariate Testing 198<br />
Actionable Testing Ideas . 202<br />
Fix the Big Losers—Landing Pages 202<br />
Focus on Checkout, Registration, and Lead Submission Pages 202<br />
Optimize the Number and Layout of Ads 203<br />
Test Different Prices and Selling Tactics 203<br />
Test Box Layouts, DVD Covers, and Offline Stuff 204<br />
Optimize Your Outbound Marketing Efforts 204<br />
Controlled Experiments: Step Up Your Analytics Game! . 205<br />
Measuring Paid Search Impact on Brand Keywords and Cannibalization 205<br />
Examples of Controlled Experiments 207<br />
Challenges and Benefits 208<br />
Creating and Nurturing a Testing Culture . 209<br />
Tip 1: Your First Test is “Do or Die” 209<br />
Tip 2: Don’t Get Caught in the Tool/Consultant Hype 209<br />
Tip 3: “Open the Kimono”—Get Over Yourself 210<br />
Tip 4: Start with a Hypothesis 210<br />
Tip 5: Make Goals Evaluation Criteria and Up-Front Decisions 210<br />
Tip 6: Test For and Measure Multiple Outcomes 211<br />
Tip 7: Source Your Tests in Customer Pain 211<br />
Tip 8: Analyze Data and Communicate Learnings 212<br />
Tip 9: Two Must-Haves: Evangelism and Expertise 212<br />
<strong>Chapter 8 Competitive Intelligence Analysis 213</strong><br />
CI Data Sources, Types, and Secrets . 214<br />
Toolbar Data 215<br />
Panel Data 216<br />
ISP (Network) Data 217<br />
Search Engine Data 217<br />
Benchmarks from Web Analytics Vendors 218<br />
Self-reported Data 219<br />
Hybrid Data 220<br />
Website Traffic Analysis . 221<br />
Comparing Long-Term Traffic Trends 222<br />
Analyzing Competitive Sites Overlap and Opportunities 223<br />
Analyzing Referrals and Destinations 224<br />
Search and Keyword Analysis 225<br />
Top Keywords Performance Trend 226<br />
Geographic Interest and Opportunity Analysis 227<br />
Related and Fast-Rising Searches 230<br />
Share-of-Shelf Analysis 231<br />
Competitive Keyword Advantage Analysis 233<br />
Keyword Expansion Analysis 234<br />
Audience Identification and Segmentation Analysis . 235<br />
Demographic Segmentation Analysis 236<br />
Psychographic Segmentation Analysis 238<br />
Search Behavior and Audience Segmentation Analysis 239<br />
<strong>Chapter 9 Emerging Analytics: Social, Mobile, and Video 241<br />
</strong>Measuring the New Social Web: The Data Challenge 242<br />
The Content Democracy Evolution 243<br />
The Twitter Revolution 247<br />
Analyzing Offline Customer Experiences (Applications) 248<br />
Analyzing Mobile Customer Experiences . 250<br />
Mobile Data Collection: Options 250<br />
Mobile Reporting and Analysis 253<br />
Measuring the Success of Blogs 257<br />
Raw Author Contribution 257<br />
Holistic Audience Growth 258<br />
Citations and Ripple Index 262<br />
Cost of Blogging 263<br />
Benefit (ROI) from Blogging 263<br />
Quantifying the Impact of Twitter . 266<br />
Growth in Number of Followers 266<br />
Message Amplification 267<br />
Click-Through Rates and Conversions 268<br />
Conversation Rate 270<br />
Emerging Twitter Metrics 271<br />
Analyzing Performance of Videos 273<br />
Data Collection for Videos 273<br />
Key Video Metrics and Analysis 274<br />
Advanced Video Analysis 278<br />
<strong>Chapter 10 Optimal Solutions for Hidden Web Analytics Traps 283<br />
</strong>Accuracy or Precision? . 284<br />
A Six-Step Process for Dealing with Data Quality . 286<br />
Building the Action Dashboard 288<br />
Creating Awesome Dashboards 288<br />
The Consolidated Dashboard 290<br />
Five Rules for High-Impact Dashboards 291<br />
Nonline Marketing Opportunity and Multichannel Measurement 294<br />
Shifting to the Nonline Marketing Model 294<br />
Multichannel Analytics 296<br />
The Promise and Challenge of Behavior Targeting 298<br />
The Promise of Behavior Targeting 299<br />
Overcoming Fundamental Analytics Challenges 299<br />
Two Prerequisites for Behavior Targeting 301<br />
Online Data Mining and Predictive Analytics: Challenges . 302<br />
Type of Data 303<br />
Number of Variables 304<br />
Multiple Primary Purposes 304<br />
Multiple Visit Behaviors 305<br />
Missing Primary Keys and Data Sets 305<br />
Path to Nirvana: Steps Toward Intelligent Analytics Evolution 306<br />
Step 1: Tag, Baby, Tag! 307<br />
Step 2: Configuring Web Analytics Tool Settings 308<br />
Step 3: Campaign/Acquisition Tracking 309<br />
Step 4: Revenue and Uber-intelligence 310<br />
Step 5: Rich-Media Tracking (Flash, Widgets, Video) 311<br />
<strong>Chapter 11 Guiding Principles for Becoming an Analysis Ninja 313</strong><br />
Context Is Queen 314<br />
Comparing Key Metrics Performance for Different Time Periods 314<br />
Providing Context Through Segmenting 315<br />
Comparing Key Metrics and Segments Against Site Average 316<br />
Joining PALM (People Against Lonely Metrics) 318<br />
Leveraging Industry Benchmarks and Competitive Data 319<br />
Tapping into Tribal Knowledge 320<br />
Comparing KPI Trends Over Time . 321<br />
Presenting Tribal Knowledge 322<br />
Segmenting to the Rescue! 323<br />
Beyond the Top 10: What’s Changed 324<br />
True Value: Measuring Latent Conversions and Visitor Behavior 327<br />
Latent Visitor Behavior 327<br />
Latent Conversions 329<br />
Four Inactionable KPI Measurement Techniques . 330<br />
Averages 330<br />
Percentages 332<br />
Ratios 334<br />
Compound or Calculated Metrics 336<br />
Search: Achieving the Optimal Long-Tail Strategy . 338<br />
Compute Your Head and Tail 339<br />
Understanding Your Brand and Category Terms 341<br />
The Optimal Search Marketing Strategy 342<br />
Executing the Optimal Long-Tail Strategy 344<br />
Search: Measuring the Value of Upper Funnel Keywords . 346<br />
Search: Advanced Pay-per-Click Analyses 348<br />
Identifying Keyword Arbitrage Opportunities 349<br />
Focusing on “What’s Changed” 350<br />
Analyzing Visual Impression Share and Lost Revenue 351<br />
Embracing the ROI Distribution Report 353<br />
Zeroing In on the User Search Query and Match Types 354<br />
<strong>Chapter 12 Advanced Principles for Becoming an Analysis Ninja 357</strong><br />
Multitouch Campaign Attribution Analysis . 358<br />
What Is All This Multitouch? 358<br />
Do You Have an Attribution Problem? 359<br />
Attribution Models 361<br />
Core Challenge with Attribution Analysis in the Real World 364<br />
Promising Alternatives to Attribution Analysis 365<br />
Parting Thoughts About Multitouch 368<br />
Multichannel Analytics: Measurement Tips for a Nonline World 368<br />
Tracking Online Impact of Offline Campaigns 369<br />
Tracking the Offline Impact of Online Campaigns 376<br />
<strong>Chapter 13 The Web Analytics Career 385<br />
</strong>Planning a Web Analytics Career: Options, Salary<br />
Prospects, and Growth . 386<br />
Technical Individual Contributor 388<br />
Business Individual Contributor 388<br />
Technical Team Leader 390<br />
Business Team Leader 391<br />
Cultivating Skills for a Successful Career in Web Analysis . 393<br />
Do It: Use the Data 393<br />
Get Experience with Multiple Tools 393<br />
Play in the Real World 394<br />
Become a Data Capture Detective 396<br />
Rock Math: Learn Basic Statistics 396<br />
Ask Good Questions 397<br />
Work Closely with Business Teams 398<br />
Learn Effective Data Visualization and Presentation 398<br />
Stay Current: Attend Free Webinars 399<br />
Stay Current: Read Blogs 400<br />
An Optimal Day in the Life of an Analysis Ninja . 401<br />
Hiring the Best: Advice for Analytics Managers and Directors 403<br />
Key Attributes of Great Analytics Professionals 404<br />
Experienced or Novice: Making the Right Choice 405<br />
The Single Greatest Test in an Interview: Critical Thinking 405<br />
<strong>Chapter 14 HiPPOs, Ninjas, and the Masses: Creating a Data-Driven Culture 407<br />
</strong>Transforming Company Culture: How to Excite<br />
People About Analytics 408<br />
Do Something Surprising: Don’t Puke Data 409<br />
Deliver Reports and Analyses That Drive Action . 412<br />
The Unböring Filter 413<br />
Connecting Insights with Actual Data 414<br />
Changing Metric Definitions to Change Cultures:<br />
Brand Evangelists Index . 415<br />
The Case and the Analysis 415<br />
The Problem 416<br />
The Solution 417<br />
The Results 417<br />
The Outcome 418<br />
An Alternative Calculation: Weighted Mean 418<br />
The Punch Line 419<br />
Slay the Data Quality Dragon: Shift from Questioning<br />
to Using Data 420<br />
Pick a Different Boss 420<br />
Distract HiPPOs with Actionable Insights 422<br />
Dirty Little Secret 1: Head Data Can Be Actionable in the First Week/Month 422<br />
Dirty Little Secret 2: Data Precision Improves Lower in the Funnel 423<br />
The Solution Is Not to Implement Another Tool! 423<br />
Recognize Diminishing Marginal Returns 424<br />
Small Site, Bigger Problems 424<br />
Fail Faster on the Web 425<br />
Five Rules for Creating a Data-Driven Boss . 426<br />
Get Over Yourself 426<br />
Embrace Incompleteness 426<br />
Always Give 10 Percent Extra 427<br />
Become a Marketer 427<br />
Business in the Service of Data. Not! 428<br />
Adopt the Web Analytics 2.0 Mind-Set 428<br />
Need Budget? Strategies for Embarrassing Your Organization 429<br />
Capture Voice of Customer 430<br />
Hijack a Friendly Website 431<br />
If All Else Fails…Call Me! 432<br />
Strategies to Break Down Barriers to Web Measurement . 432<br />
First, a Surprising Insight 433<br />
Lack of Budget/Resources 433<br />
Lack of Strategy 434<br />
Siloed Organization 434<br />
Lack of Understanding 435<br />
Too Much Data 435<br />
Lack of Senior Management Buy-In 436<br />
IT Blockages 437<br />
Lack of Trust in Analytics 439<br />
Finding Staff 439<br />
Poor Technology 439<br />
Who Owns Web Analytics? 440<br />
To Centralize or Not to Centralize 440<br />
Evolution of the Team 441<br />
<strong>Appendix About the Companion CD 443</strong><br />
Index 447</p>
<p>《Web Analytics 2.0》官方网站：<a href="http://www.webanalytics20.com/">http://www.webanalytics20.com/</a></p>
<p>《Web Analytics 2.0》PDF 下载：<a href="http://www.box.net/shared/cgfrrgt8h6">http://www.box.net/shared/cgfrrgt8h6</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/web-analytics-2-0.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>《Google Advertising Tools》PDF下载</title>
		<link>http://www.biaodianfu.com/google-advertising-tools.html</link>
		<comments>http://www.biaodianfu.com/google-advertising-tools.html#comments</comments>
		<pubDate>Thu, 27 May 2010 00:20:41 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[电子书籍]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[O'Reilly]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2174</guid>
		<description><![CDATA[《Google Advertising Tools》目录： Part I. Making Money with a Website 1. Creating Successful Websites . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2175" title="Google-Advertising-Tools" src="http://www.biaodianfu.com/wp-content/uploads/2010/05/Google-Advertising-Tools.jpg" alt="" width="350" height="460" /></p>
<p>《Google Advertising Tools》目录：</p>
<p><strong>Part I. Making Money with a Website</strong><br />
<strong>1. Creating Successful Websites . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3</strong><br />
The Taxonomy of Success 4<br />
Entertainment 5<br />
Useful Free Services and Software 6<br />
Magazines and Newspapers 8<br />
The Blogosphere 9<br />
Practical Information: Content Sites and Niches 10<br />
E-Commerce Sites 11<br />
Tools for Measuring Popularity 12<br />
Using the Google Toolbar 12<br />
Let the Google Search Engine Be Your Guide 13<br />
Finding Popularity with Alexa 15<br />
How Much Content Is Enough? 17<br />
Presenting Content 18<br />
Page and Site Design 18<br />
Page Size 19<br />
Images, Video, and Podcasting 20<br />
Keeping Content Fresh 20<br />
Positioning Ads 21<br />
Content Architecture 23<br />
Separating Content from Design 23<br />
Server-Side Includes 25<br />
PHP Includes 27<br />
Optimal Include Layout 28<br />
Where Does Content Come From? 29<br />
The Power of Community 29<br />
Action Items 31<br />
<strong>2. Creating Effective Marketing Plans . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33</strong><br />
Telling a Story 33<br />
The Elevator Pitch 36<br />
Basics of Marketing 36<br />
Creating a Plan 38<br />
Creating a Checklist 40<br />
Naming Your Site 40<br />
Introducing SEM 41<br />
Comparing SEO with SEM 42<br />
Crafting the Blended Campaign 43<br />
Action Items 43<br />
<strong>3. Driving Traffic to a Website . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45</strong><br />
Submitting Your Sites to Search Engines 46<br />
Important Search Engines for Submission 47<br />
Submission Tools 47<br />
Working with Google 49<br />
Taking Advantage of Site Mapping 54<br />
Working with Directories 57<br />
Understanding Taxonomies 58<br />
Getting Open Directory Project Listings 58<br />
Getting Yahoo! Directory Listings 62<br />
Becoming Popular by Generating Inbound Links 63<br />
The Best Inbound Links 65<br />
Finding Sites to Make a Link Request 65<br />
Making the Link Request 66<br />
The Power of the Press Release 68<br />
Unleashing Your Inner Blogger 71<br />
Using Syndication Feeds to Your Benefit 73<br />
Creating Feeds 74<br />
Telling the World About Your Feed 75<br />
Submitting Feeds 76<br />
Creating Email Lists and Surmounting the Spam Problem 77<br />
Action Items 78<br />
<strong>4. Nuts and Bolts of SEO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81<br />
</strong>SEO’s Evolution 82<br />
The SEO Advantage 83<br />
What SEO Can (and Cannot) Do 83<br />
Free Tools 85<br />
Google Webmaster Tools 86<br />
Commercial SEO Analysis Software 88<br />
More About How Your Site Appears to a Bot 89<br />
Images 89<br />
Links 90<br />
File Formats 90<br />
Viewing Your Site with an All-Text Browser 91<br />
Excluding the Bot 92<br />
The robots.txt File 94<br />
Meta Robot Tags 95<br />
Meta Information 96<br />
Design for SEO 99<br />
Site Design Principles 100<br />
Words and Keyword Density 100<br />
Site Design Principles 105<br />
Using PageRank 105<br />
Linking 109<br />
Inbound links 110<br />
Outbound Links 111<br />
Cross Links 111<br />
Avoiding Overly Aggressive SEO 112<br />
Google’s Prohibitions 112<br />
Why Not to Be Overly Aggressive 115<br />
Action Items 115<br />
<strong>5. Making Money with Affiliate Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117</strong><br />
Kinds of Ad Programs 118<br />
Understanding Affiliate Programs 119<br />
Mechanics of the Process 120<br />
Creatives 123<br />
Areas of Concern 126<br />
Working with an Affiliate Program 130<br />
Benefits of Affiliate Aggregators 130<br />
Finding an Affiliate Aggregator 131<br />
Ad Hoc Affiliation 145<br />
The Amazon.com Associate Program 148<br />
Action Items 153<br />
<strong>6. Making Money by Hosting Advertising . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155<br />
</strong>Understanding Cost Per Click (CPC) 156<br />
Contextual Relevance 158<br />
How Good Is the Context? 160<br />
Serving Ads 161<br />
Dollars and Cents 163<br />
CPC Vendors Compared 165<br />
Placing Ad Units on Your Site 166<br />
Signing Up 166<br />
Choosing the Kinds of Ads 167<br />
Selecting Ad Formats 168<br />
Adding Code to Your Pages 173<br />
Display and Banner Ads 176<br />
Action Items 177<br />
<strong>7. Understanding the Google Behemoth . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 179</strong><br />
The Parts of Google 180<br />
Blogger 183<br />
Book Search 183<br />
Directory 183<br />
Gmail 183<br />
GOOG-411 184<br />
Google Health 184<br />
Maps 184<br />
Product Search 185<br />
Scholar 185<br />
YouTube 185<br />
Content Versus Search 186<br />
Anatomy of a Search Query 187<br />
Google Syntax and Operators 189<br />
The Rules of Simple Search 189<br />
Effective Searching 190<br />
Advanced Search 191<br />
The Search Results Page 191<br />
The Automated Ad Broker: AdWords 193<br />
Action Items 195<br />
<strong>Part II. Cashing in with AdSense</strong><br />
<strong>8. Working with AdSense . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 199</strong><br />
Applying for an AdSense Account 199<br />
Setting Account Options 203<br />
Payment Preferences 203<br />
Ad Display Preference 205<br />
Account Access 205<br />
Reviewing Payment History 206<br />
Filing Tax Information 206<br />
AdSense Programs 207<br />
AdSense for Content Ad Settings 211<br />
Ad Type 212<br />
Ad Format and Colors 213<br />
Ad Channels 218<br />
Getting the Code 218<br />
Managing Ads 224<br />
Custom Ad Colors 225<br />
Using Channels 227<br />
Applying Competitive Filters 229<br />
Site Authentication, Ad Review, and Allowed Sites 230<br />
AdSense for Search Settings 230<br />
AdSense for Feeds 235<br />
AdSense for Domains 239<br />
Video Units 243<br />
Linking Google AdSense to Google Analytics 246<br />
Action Items 247<br />
<strong>9. Making Sense of AdSense . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 249<br />
</strong>Fundamentals of Navigation 249<br />
Understanding the Metrics 253<br />
Running Reports 254<br />
Saving a Report as a Template 255<br />
Choosing a Date Range 256<br />
Page, Unit, or Ad Impressions 257<br />
Aggregate Versus Channel Data 257<br />
Statistics 259<br />
Downloading a CSV File 260<br />
Other Program Performance 261<br />
Search Performance 261<br />
How Are Your Parked Domains Doing? 262<br />
Optimization Tips 263<br />
Site Diagnostics 264<br />
Your Earnings 265<br />
Tools Beyond AdSense for Tracking 266<br />
Listening to Web Logs 267<br />
Web Analytic Software 273<br />
Action Items 274<br />
<strong>Part III. Working with AdWords<br />
10. Using AdWords . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 277</strong><br />
Signing Up for an Account 277<br />
Creating Your Account 277<br />
Creating Your First Campaign 280<br />
Bidding and Budget 282<br />
Advanced Settings 283<br />
Creating an Ad 284<br />
Crafting an Ad 286<br />
Choosing Keywords 288<br />
Providing Payment Information and Activating Your Account 289<br />
Graduating 290<br />
Ad Campaigns and Ad Groups 291<br />
Creating and Editing Ad Campaigns 292<br />
Creating a New Campaign 293<br />
Editing Campaign Settings 299<br />
Ad Groups 308<br />
Getting a My Client Center Account 312<br />
Action Items 314<br />
<strong>11. Improving Performance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 315<br />
</strong>Monitoring Your AdWords Activity 315<br />
Understanding Your Campaign Summary 317<br />
Drilling Down into a Campaign 320<br />
Understanding Ad Group Performance 321<br />
Campaign Management Tools 325<br />
Using the Ads Diagnostic Tool 326<br />
Optimizing Your Ads 330<br />
Action Items 339<br />
<strong>12. The Zen of AdWords . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 341</strong><br />
The Customer Life Cycle 341<br />
Keywords 342<br />
Getting Seen 343<br />
Test Your Ads 344<br />
Landing Pages That Work 344<br />
Tracking 345<br />
Balance 345<br />
The Path of Indirection 345<br />
Success via Iteration 345<br />
Targeting the Competition 347<br />
Estimating Traffic 347<br />
Exclusion 350<br />
Excluding Sites and Categories 350<br />
IP Exclusion 352<br />
Action Items 353<br />
<strong>13. Advanced Performance Monitoring . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 355<br />
</strong>Using AdWords Reports 355<br />
Kinds of Reports 356<br />
Creating a Placement/Keyword Report 357<br />
Conversion Tracking 362<br />
Understanding Conversion Tracking 363<br />
Tracking PayPal Purchases 367<br />
Tracking Visitors to a Crucial Page 373<br />
Google Analytics 374<br />
Getting Started with Google Analytics 376<br />
Using Google Analytics 379<br />
Website Optimizer 383<br />
Action Items 383<br />
<strong>14. AdWords beyond CPC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 385</strong><br />
Display Ad Builder 385<br />
Mobile Ads 392<br />
Video Ads 395<br />
Advertising on TV 396<br />
Action Items 399<br />
<strong>Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 401</strong></p>
<p>《Google Advertising Tools》PDF下载：<a href="http://www.box.net/shared/pvb7evs45d">http://www.box.net/shared/pvb7evs45d</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/google-advertising-tools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google对网页时间的关注</title>
		<link>http://www.biaodianfu.com/google-serp-date.html</link>
		<comments>http://www.biaodianfu.com/google-serp-date.html#comments</comments>
		<pubDate>Mon, 03 May 2010 15:28:44 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[搜索优化]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2113</guid>
		<description><![CDATA[可以肯定的是Google对时间越来越重视了（除了实时搜索的重要性外），我们可以看到Google已经把时间融入到了搜索结果中，Google左侧的百宝箱中的时间筛选及时光隧道都是基于时间创建的。 除此之外Google对搜索接口中的网页描述也做了修改，入图： 在原有的描述（摘要）前面添加了一个具体的时间。同样英文界面也按照此种情况 在搜索结果中呈现网页的时间无疑是提高用户体验，和快照时间不同的事，此时间可以让用户准确的知道这个页面的创建时间。同样的百度采取的方法是把快照时间修改为网页时间。最能说明百度做了此操作的是在年前，百度调整了算法，快照时间发生了错乱，及百度抓取了页面上的时间，但是并没有对抓取的时间做判断，以至于一段时间内百度的快照时间超越了时空，显示了未来的某一个时间，比如2012-12-21；，还有就是显示很久以前的时间，比如1949-10-1&#8230; 前面的一片文章中提到过，Google抓取页面日期的规则：http://www.biaodianfu.com/google-crawl-date.html 我们再来回顾下： Google可从文档的标题、正文、网址或元标记中提取日期，也可从 HTTP 服务器返回的最后修改日期中提取日期。对于从标题、正文、网址或元标记中提取的日期而言，遇到的第一个最常用格式的日期即视为文档日期。 已移到某个目录并按最后修改日期排序的文件可以反映复制或移动该文件的日期。 Search Appliance 可以提取以下范围内的日期： 开始日期： 1970 年 1 月 1 日 结束日期： 从现在起两天后 针对Google的改变，网页时间对SEO有何影响呢，首先思考一个问题，对于一个话题，您是希望知道最新的信息还是希望知道最原始的信息，我想很多人会选择第一种，Google的工程师也会这么认为的，那么该如何利用好时间呢？ 1.每个页面上最好都有一个日期（类似博客的发表日期，记得放在文章的最前面） 2.对于一些修改过的页面，修改后最好显示修改时间（并将修改时间放在发布时间前面或替代原来的发布时间） 3.对于一些经常更新的页面（最好在页面上显示当天的日期，如果页面上没有其他的日期格式，可放在网页页脚）]]></description>
			<content:encoded><![CDATA[<p>可以肯定的是Google对时间越来越重视了（除了实时搜索的重要性外），我们可以看到Google已经把时间融入到了搜索结果中，Google左侧的百宝箱中的时间筛选及时光隧道都是基于时间创建的。</p>
<p><img class="alignnone size-full wp-image-2114" title="date" src="http://www.biaodianfu.com/wp-content/uploads/2010/05/date.png" alt="" width="120" height="242" /></p>
<p><img class="alignnone size-full wp-image-2115" title="timeline" src="http://www.biaodianfu.com/wp-content/uploads/2010/05/timeline.png" alt="" width="560" height="108" /></p>
<p>除此之外Google对搜索接口中的网页描述也做了修改，入图：</p>
<p><img class="alignnone size-full wp-image-2116" title="serp_time" src="http://www.biaodianfu.com/wp-content/uploads/2010/05/serp_time.png" alt="" width="561" height="382" /></p>
<p>在原有的描述（摘要）前面添加了一个具体的时间。同样英文界面也按照此种情况</p>
<p><img class="alignnone size-full wp-image-2117" title="serp_time_en" src="http://www.biaodianfu.com/wp-content/uploads/2010/05/serp_time_en.png" alt="" width="554" height="227" /></p>
<p>在搜索结果中呈现网页的时间无疑是提高用户体验，和快照时间不同的事，此时间可以让用户准确的知道这个页面的创建时间。同样的百度采取的方法是把快照时间修改为网页时间。最能说明百度做了此操作的是在年前，百度调整了算法，快照时间发生了错乱，及百度抓取了页面上的时间，但是并没有对抓取的时间做判断，以至于一段时间内百度的快照时间超越了时空，显示了未来的某一个时间，比如2012-12-21；，还有就是显示很久以前的时间，比如1949-10-1&#8230;</p>
<p>前面的一片文章中提到过，Google抓取页面日期的规则：<a href="http://www.biaodianfu.com/google-crawl-date.html">http://www.biaodianfu.com/google-crawl-date.html</a></p>
<p>我们再来回顾下：</p>
<p>Google可从文档的标题、正文、网址或元标记中提取日期，也可从 HTTP 服务器返回的最后修改日期中提取日期。对于从标题、正文、网址或元标记中提取的日期而言，遇到的第一个最常用格式的日期即视为文档日期。 已移到某个目录并按最后修改日期排序的文件可以反映复制或移动该文件的日期。</p>
<p>Search Appliance 可以提取以下范围内的日期：</p>
<ul>
<li>开始日期： 1970 年 1 月 1 日</li>
<li>结束日期： 从现在起两天后</li>
</ul>
<p>针对Google的改变，网页时间对SEO有何影响呢，首先思考一个问题，对于一个话题，您是希望知道最新的信息还是希望知道最原始的信息，我想很多人会选择第一种，Google的工程师也会这么认为的，那么该如何利用好时间呢？</p>
<p>1.每个页面上最好都有一个日期（类似博客的发表日期，记得放在文章的最前面）</p>
<p>2.对于一些修改过的页面，修改后最好显示修改时间（并将修改时间放在发布时间前面或替代原来的发布时间）</p>
<p>3.对于一些经常更新的页面（最好在页面上显示当天的日期，如果页面上没有其他的日期格式，可放在网页页脚）</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/google-serp-date.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Search Appliance 搜索日志</title>
		<link>http://www.biaodianfu.com/status-log.html</link>
		<comments>http://www.biaodianfu.com/status-log.html#comments</comments>
		<pubDate>Sun, 25 Apr 2010 12:36:03 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[搜索优化]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2093</guid>
		<description><![CDATA[搜索日志记录了从索引获取信息的用户请求。 您可以生成并导出这一信息，然后将其输入喜欢的日志分析软件或报告软件。 下面是搜索日志可提供的信息的一些示例： 用户执行了哪些类型的查询？ 用户点击了用户界面的哪些部分？ 为用户提供服务的速度如何？ 用户得到所需结果了吗？ 您需要通过配置相关查询、关键字匹配、查询扩展或单一框功能帮助用户查找相关信息吗？ 您能够在设备中保留最多 100 个覆盖所有集合的搜索日志。 日志的格式是公用日志格式 (Common Log Format, CLF) 的简单扩展。 文件对于每个请求包含单独的一行。 一行由若干个以空格分隔的令牌组成： 主机 &#8212; [日期时间] 请求状态字节结果时间 主机： 客户机的 IP 地址。 日期： 请求的日期和时间，采用以下格式： 日期 = [天/月/年:小时:分钟:秒 区域] 天 = 2*位数字 月份 = 3*个字母 年度 = 4*位数字 小时 = 2*位数字 分钟 = 2*位数字 秒 = 2*位数字 区域 = (`+&#8217; &#124; [...]]]></description>
			<content:encoded><![CDATA[<p>搜索日志记录了从索引获取信息的用户请求。 您可以生成并导出这一信息，然后将其输入喜欢的日志分析软件或报告软件。</p>
<p>下面是搜索日志可提供的信息的一些示例：</p>
<ul>
<li><span style="color: #ff0000;">用户执行了哪些类型的查询？</span></li>
<li><span style="color: #ff0000;">用户点击了用户界面的哪些部分？</span></li>
<li><span style="color: #ff0000;">为用户提供服务的速度如何？</span></li>
<li><span style="color: #ff0000;">用户得到所需结果了吗？</span></li>
<li>您需要通过配置相关查询、关键字匹配、查询扩展或单一框功能帮助用户查找相关信息吗？</li>
</ul>
<p>您能够在设备中保留最多 100 个覆盖所有集合的搜索日志。</p>
<p>日志的格式是公用日志格式 (Common Log Format, CLF) 的简单扩展。 文件对于每个请求包含单独的一行。 一行由若干个以空格分隔的令牌组成：</p>
<p><strong>主机 &#8212; [日期时间] 请求状态字节结果时间</strong></p>
<ul>
<li><strong>主机</strong>： 客户机的 IP 地址。</li>
<li><strong>日期</strong>： 请求的日期和时间，采用以下格式：
<ul>
<li>日期 = [天/月/年:小时:分钟:秒 区域]</li>
<li>天 = 2*位数字</li>
<li>月份 = 3*个字母</li>
<li>年度 = 4*位数字</li>
<li>小时 = 2*位数字</li>
<li>分钟 = 2*位数字</li>
<li>秒 = 2*位数字</li>
<li>区域 = (`+&#8217; | `-&#8217;) 4*位数字</li>
</ul>
</li>
<li><strong>请求</strong>： 来自客户机的请求行，包含在双引号 (&#8220;) 内。</li>
<li><strong>状态</strong>： 返回客户端的由三位数字组成的状态代码。</li>
<li><strong>字节</strong>： 返回到客户端的字节数。</li>
<li><strong>结果</strong>： 返回到客户端的搜索结果数。</li>
<li><strong>时间</strong>： 完成此请求所用的总时间（秒）</li>
</ul>
<p>您可以搜索日志，以查找包含特定字符串的所有行。</p>
<p><strong>请注意：</strong> 在指定时区方面，Search Appliance 不再遵循 POSIX 标准。 它采用指定本地时间与格林尼治标准时间差别的时差制。 这样，日本的时区应该指定为 GMT＋9，因为它比格林尼治标准时间快 9 个小时。</p>
<p>对日志数据的维护为期 90 天。</p>
<p><strong><a name="asr2"></a>导出“高级搜索报告”：</strong></p>
<p>“高级搜索报告”中的每个条目表示用户在 Search Appliance 用户界面（搜索页或结果页）上的一次点击。 每个条目由以下项的值组成：</p>
<ul>
<li><span style="color: #ff0000;">以百分之一秒为单位的点击时间</span></li>
<li><span style="color: #ff0000;">做出点击的用户的 IP 地址</span></li>
<li>会话 ID 的占据位置，始终为空</li>
<li>点击类型，如下表所述</li>
<li><span style="color: #ff0000;">点击起始页（用户点击得到的结果页）</span></li>
<li><span style="color: #ff0000;">点击排名（用户点击得到的结果页的排名）</span></li>
<li>点击数据，通常为空</li>
<li>查询（返回结果的用户查询）</li>
<li><span style="color: #ff0000;">用户点击的网址</span></li>
</ul>
<p>下面的例子显示了高级搜索报告中的一个条目：</p>
<p>121331555476,172.18.75.121, ,onebox,0,0,,hobo,http://www.tropo.com/</p>
<p>下表描述了 Search Appliance 内置的点击类型：</p>
<table border="0" width="90%">
<tbody>
<tr>
<th scope="col">点击类型</th>
<th scope="col">说明</th>
</tr>
<tr>
<td>高级</td>
<td>搜索页上的高级搜索链接</td>
</tr>
<tr>
<td>advanced_swr</td>
<td>对其他文字的高级搜索</td>
</tr>
<tr>
<td>c</td>
<td>搜索结果</td>
</tr>
<tr>
<td>缓存</td>
<td>结果页上的缓存文档</td>
</tr>
<tr>
<td>集群</td>
<td>结果页上的集群标签</td>
</tr>
<tr>
<td>db</td>
<td>结果页上的数据库内容</td>
</tr>
<tr>
<td>desk.groups</td>
<td>搜索页顶部的论坛链接</td>
</tr>
<tr>
<td>desk.images</td>
<td>搜索页顶部的图片链接</td>
</tr>
<tr>
<td>desk.local</td>
<td>搜索页顶部的本地链接</td>
</tr>
<tr>
<td>desk.news</td>
<td>搜索页顶部的资讯链接</td>
</tr>
<tr>
<td>desk.web</td>
<td>搜索页顶部的网络链接</td>
</tr>
<tr>
<td>帮助</td>
<td>搜索页上的搜索提示链接</td>
</tr>
<tr>
<td>关键字匹配</td>
<td>结果页上的关键字匹配</td>
</tr>
<tr>
<td>徽标</td>
<td>超链接徽标</td>
</tr>
<tr>
<td>nav.next</td>
<td>导航，下一页</td>
</tr>
<tr>
<td>nav.page</td>
<td>导航，特定页</td>
</tr>
<tr>
<td>nav.prev</td>
<td>导航，上一页</td>
</tr>
<tr>
<td>单一框</td>
<td>结果页上的单一框</td>
</tr>
<tr>
<td>sitesearch</td>
<td>结果页上的“更多结果来自&#8230;链接”</td>
</tr>
<tr>
<td>排序</td>
<td>结果页上的排序链接</td>
</tr>
<tr>
<td>拼写</td>
<td>拼写建议</td>
</tr>
<tr>
<td>同义词</td>
<td>结果页上的相关查询</td>
</tr>
<tr>
<td>其他</td>
<td>未注解链接</td>
</tr>
</tbody>
</table>
<p>您还可以为前端创建点击类型。 有关详情，请参阅 <a href="http://code.google.com/apis/searchappliance/documentation/">公共 Search Appliance 文档网页</a>上的“创建搜索体验：最佳实践”。</p>
<p><a name="generate"></a><strong>定义搜索日志</strong></p>
<p><strong>生成搜索日志</strong>：</p>
<ol>
<li>在<strong>显示集合搜索日志</strong>菜单中，指定您希望涵盖其搜索查询的具体集合。</li>
<li>日志的名称最多能包含 20 个字母数字类字符、连字符和下划线。 名称不能以连字符开始。</li>
<li>确定内容的具体时间范围。</li>
<li>点击<strong>生成日志</strong>。</li>
</ol>
<p>虽然设备并不会阻止您创建多个并行的日志，但是建议您最好不要这样做。 为了实现最佳效果，请每次创建一个日志。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/status-log.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Search Appliance 抓取队列</title>
		<link>http://www.biaodianfu.com/status-crawl-queue.html</link>
		<comments>http://www.biaodianfu.com/status-crawl-queue.html#comments</comments>
		<pubDate>Sun, 25 Apr 2010 10:19:33 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[搜索优化]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2091</guid>
		<description><![CDATA[抓取队列是设备等待抓取的网址以及已到抓取时间的网址的集合。 该信息可帮助您确定在恰当时间是否正在抓取特定主机，以及为什么来自某文档的信息比其他信息要新，等等。 由于抓取队列会在抓取工具处理新信息的过程中不断更改，因此该队列是动态的。 所以，抓取队列快照显示的是当前状况，但不是将来发生的情况的确切预测。 在您获取抓取队列快照之后，队列可能会更改。 请注意，创建抓取队列快照会占用大量资源，因此会降低抓取工具本身的性能。 抓取队列快照 表中列示出了以前抓取的快照。 您可以查看快照的内容，导入到 .csv 文件中，或者将其删除。 在您通过点击获取抓取队列开始获取后，快照即会显示在表中。 在快照生成过程中，其状态为“正在获取”，并且显示“取消”链接。 快照完成后，“取消”链接会变为“删除”链接。 定义快照 获取当前抓取队列的快照： 名称最多支持 20 个字母数字类字符、连字符和下划线。 名称不能以连字符开始。 对于包含的网址数量，指定您希望快照包含的队列中的网址数量（最多 100,000）。 对于包含的未来小时数，请指定您希望快照显示的预定小时数（从现在开始向后）。 快照还会包含到期预定网址。 默认情况下，抓取队列快照包含所有主机。 要将快照限制为单个主机，请点击仅包含该主机的网址，并输入主机名。 Search Appliance 每次只可以创建一个抓取队列快照。 查看快照 点击“查看”，然后点击主机名，即可显示相应主机的快照内容。 抓取队列的快照会显示在获取快照之前等待被抓取的网址。 每一快照都包含以下信息。 项目 说明 PageRank 要抓取的资源的网页排名。 网页排名是影响资源在队列中位置的因素之一，它会让较重要文档的抓取频率高于较不重要的文档。 请注意，在导出快照时不会包含网页排名信息。 上次抓取时间 最后一次抓取该网址的时间。 下一个预定时间 预定抓取资源的时间。 该时间可能会改变，并且受网页排名、队列到期项目状况及其他因素的影响。过期项在被抓取前显示为红色。 如果您一直看到同一到期项，则可能需要进一步进行调查。 只有在首次抓取了网址之后，才会显示下一个预定时间。 更改间隔 希望对这一网络资源进行更改的频率。 首次抓取之后，设备将所有网址的更改间隔初始化为两天。 然后，设备会根据网址的实际更改频率调整更改间隔。 设备在每次抓取网址时都会了解在上次抓取后该资源是否发生过更改。 如果资源已更改，更改间隔会缩短。 如果资源未发生更改，更改间隔会延长。 您可以使用抓取频度调节功能更改这一计算过程。 只有在首次抓取了网址之后，“更改间隔”才会出现。 [...]]]></description>
			<content:encoded><![CDATA[<p>抓取队列是设备等待抓取的网址以及已到抓取时间的网址的集合。 该信息可帮助您确定在恰当时间是否正在抓取特定主机，以及为什么来自某文档的信息比其他信息要新，等等。</p>
<p>由于抓取队列会在抓取工具处理新信息的过程中不断更改，因此该队列是动态的。 所以，抓取队列快照显示的是当前状况，但不是将来发生的情况的确切预测。 在您获取抓取队列快照之后，队列可能会更改。</p>
<p>请注意，创建抓取队列快照会占用大量资源，因此会降低抓取工具本身的性能。</p>
<p><strong>抓取队列快照</strong></p>
<p>表中列示出了以前抓取的快照。 您可以查看快照的内容，导入到 .csv 文件中，或者将其删除。</p>
<p>在您通过点击<strong>获取抓取队列</strong>开始获取后，快照即会显示在表中。 在快照生成过程中，其状态为“正在获取”，并且显示“取消”链接。 快照完成后，“取消”链接会变为“删除”链接。</p>
<p><strong>定义快照</strong></p>
<p><strong>获取当前抓取队列的快照： </strong></p>
<ol>
<li><strong>名称</strong>最多支持 <span style="color: #ff0000;">20 个字母数字类字符、连字符和下划线。 名称不能以连字符开始</span>。</li>
<li>对于<strong>包含的网址数量</strong>，指定您希望快照包含的队列中的网址数量（最多 100,000）。</li>
<li>对于<strong>包含的未来小时数</strong>，请指定您希望快照显示的预定小时数（从现在开始向后）。 快照还会包含到期预定网址。</li>
<li>默认情况下，抓取队列快照包含所有主机。 要将快照限制为单个主机，请点击<strong>仅包含该主机的网址</strong>，并输入主机名。</li>
</ol>
<p>Search Appliance 每次只可以创建一个抓取队列快照。</p>
<h4>查看快照</h4>
<p>点击“查看”，然后点击主机名，即可显示相应主机的快照内容。 抓取队列的快照会显示在获取快照之前等待被抓取的网址。</p>
<p>每一快照都包含以下信息。</p>
<table border="1" cellspacing="1" cellpadding="1" width="85%">
<tbody>
<tr>
<th width="20%" scope="col"><span style="color: #ffffff;">项目</span></th>
<th scope="col"><span style="color: #ffffff;">说明</span></th>
</tr>
<tr>
<td><span style="color: #ff0000;">PageRank</span></td>
<td>要抓取的资源的网页排名。 网页排名是影响资源在队列中位置的因素之一，它会让较重要文档的抓取频率高于较不重要的文档。 请注意，在导出快照时不会包含网页排名信息。</td>
</tr>
<tr>
<td><span style="color: #ff0000;">上次抓取时间</span></td>
<td>最后一次抓取该网址的时间。</td>
</tr>
<tr>
<td><span style="color: #ff0000;">下一个预定时间</span></td>
<td>预定抓取资源的时间。 该时间可能会改变，并且受网页排名、队列到期项目状况及其他因素的影响。过期项在被抓取前显示为红色。 如果您一直看到同一到期项，则可能需要进一步进行调查。</p>
<p>只有在首次抓取了网址之后，才会显示下一个预定时间。</td>
</tr>
<tr>
<td><span style="color: #ff0000;">更改间隔</span></td>
<td>希望对这一网络资源进行更改的频率。 首次抓取之后，设备将所有网址的更改间隔初始化为两天。 然后，设备会根据网址的实际更改频率调整更改间隔。</p>
<p>设备在每次抓取网址时都会了解在上次抓取后该资源是否发生过更改。 如果资源已更改，更改间隔会缩短。 如果资源未发生更改，更改间隔会延长。</p>
<p>您可以使用抓取频度调节功能更改这一计算过程。</p>
<p>只有在首次抓取了网址之后，“更改间隔”才会出现。</td>
</tr>
<tr>
<td><span style="color: #ff0000;">网址</span></td>
<td>所含内容被抓取的网络资源。</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/status-crawl-queue.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Search Appliance 查询扩展</title>
		<link>http://www.biaodianfu.com/serve-query-expansion.html</link>
		<comments>http://www.biaodianfu.com/serve-query-expansion.html#comments</comments>
		<pubDate>Sun, 25 Apr 2010 10:10:15 +0000</pubDate>
		<dc:creator>标点符</dc:creator>
				<category><![CDATA[搜索优化]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.biaodianfu.com/?p=2088</guid>
		<description><![CDATA[查询扩展可让 Search Appliance 自动向用户的搜索查询添加额外字词，以返回更多相关结果。 使用查询扩展时，Search Appliance 可扩展两类字词： 用户给出的词的同词干词。 例如，如果用户查找“engineer”，Search Appliance 能向查询中添加“engineers”。 一个或多个以空格分隔的字词（与用户提供的词互为同义词或与密切相关）。 例如，如果用户搜索“FAQ”，设备可能将“frequently asked questions”添加到该查询，或者，如果用户输入“office building”，查询可能扩展到包含“office tower”。 本主题包含以下几个部分： 关于查询扩展字词 创建同义词文件 创建黑名单文件 设置并管理查询扩展文件 设置查询扩展策略 查询扩展和相关查询的关系 关于查询扩展字词 我们提供了内置的字词匹配逻辑，您可以指定自己的字词匹配列表。 每个前端都具有相应的策略，用于指定是否使用 Search Appliance 的内置逻辑（“标准”字词集）、您自己的同义词列表（“本地”字词集）或同时使用二者（“完全”字词集）。 在建立查询扩展策略时，添加更多字词可生成更多结果（正面影响），但也可能会产生没有用处的附带性扩展，此时，您需要对这两方面进行权衡。 您需要监控结果质量，以确保不会产生不必要的扩展。 查询扩展无法传递。 只有原始查询字词才能扩展；同义词无法扩展。 标准字词 默认情况下，会以英语、法语、德语、意大利语、葡萄牙语和西班牙语提供 Search Appliance 查询扩展字词。 逻辑会考虑查询中字词的上下文，并可能在一个查询中将某个字词与它的同义词匹配，而在另一个查询中却不这么做。 本地字词 您可以创建针对 Latin1 字母表的本地查询扩展策略。 本地查询扩展策略由两种文件构成： 同义词文件和黑名单文件。 您可以使用一种类型的文件，也可以同时使用两种类型的文件，还可以创建最多含有 100 个文件的组合文件。 包含重音字符的文件应经过 UTF-8 编码。 本地同义词对于配置网站特有的术语表很有用。 下面是一些示例： 部件制造商可以配置将作废部件号与替代部件号进行匹配的同义词。 [...]]]></description>
			<content:encoded><![CDATA[<p>查询扩展可让 Search Appliance 自动向用户的搜索查询添加额外字词，以返回更多相关结果。 使用查询扩展时，Search Appliance 可扩展两类字词：</p>
<ul>
<li><span style="color: #ff0000;">用户给出的词的同词干词</span>。 例如，如果用户查找“engineer”，Search Appliance 能向查询中添加“engineers”。</li>
<li>一个或多个以空格分隔的字词（<span style="color: #ff0000;">与用户提供的词互为同义词或与密切相关</span>）。 例如，如果用户搜索“FAQ”，设备可能将“frequently asked questions”添加到该查询，或者，如果用户输入“office building”，查询可能扩展到包含“office tower”。</li>
</ul>
<p>本主题包含以下几个部分：</p>
<ul>
<li>关于查询扩展字词</li>
<li>创建<span style="color: #ff0000;">同义词</span>文件</li>
<li>创建<span style="color: #ff0000;">黑名单</span>文件</li>
<li>设置并管理查询扩展文件</li>
<li>设置查询扩展策略</li>
<li>查询扩展和相关查询的关系</li>
</ul>
<p><strong>关于查询扩展字词</strong></p>
<p>我们提供了内置的字词匹配逻辑，您可以指定自己的字词匹配列表。 每个前端都具有相应的策略，用于指定是否使用 Search Appliance 的内置逻辑<span style="color: #000000;">（“标准”字词集）、您自己的同义词列表（“本地”字词集）</span>或同时使用二者<span style="color: #000000;">（“完全”字词集）。</span></p>
<p>在建立查询扩展策略时，添加更多字词可生成更多结果（正面影响），但也可能会产生没有用处的附带性扩展，此时，您需要对这两方面进行权衡。 您需要监控结果质量，以确保不会产生不必要的扩展。</p>
<p>查询扩展无法传递。 只有原始查询字词才能扩展；同义词无法扩展。</p>
<p><strong><span style="color: #ff0000;">标准字词 </span></strong></p>
<p>默认情况下，会以英语、法语、德语、意大利语、葡萄牙语和西班牙语提供 Search Appliance 查询扩展字词。 逻辑会考虑查询中字词的上下文，并可能在一个查询中将某个字词与它的同义词匹配，而在另一个查询中却不这么做。</p>
<p><strong><span style="color: #ff0000;">本地字词</span> </strong></p>
<p>您可以创建针对 Latin1 字母表的本地查询扩展策略。 本地查询扩展策略由两种文件构成： 同义词文件和黑名单文件。 您可以使用一种类型的文件，也可以同时使用两种类型的文件，还可以创建最多含有 100 个文件的组合文件。 包含重音字符的文件应经过<span style="color: #ff0000;"> UTF-8 编码</span>。</p>
<p>本地同义词对于配置网站特有的术语表很有用。 下面是一些示例：</p>
<ul>
<li>部件制造商可以配置将作废部件号与替代部件号进行匹配的同义词。 对旧部件感兴趣的用户将也会收到新部件的相关信息。</li>
<li>大学可以通过配置同义词将课程缩写扩展成全称。 例如，关于 CS101 的查询可以包含从 computer science 101 得到的结果。</li>
<li>制造商可以配置其产品大类的相关查询，以便加入其产品名的查询。</li>
</ul>
<p>您可以通过创建黑名单控制查询扩展。 黑名单是从查询扩展中排除的一组字词。 黑名单可用于删除不想要的搜索结果，这些搜索结果源自与您环境中使用的特殊字符匹配或阐明了它们的同义词。 假设您为生产名为“Glue”的产品的软件公司管理设备，该产品能够实现不同软件组件的交互。 您可以在黑名单中添加“glue”，以确保用户查询不会扩展到“adhesive”。</p>
<p>要使用本地字词集配置查询扩展，您可以创建一个或多个同义词文件、黑名单文件或同时创建两种文件， 然后上传文件并应用设置。 以下部分说明了如何创建和启用这些文件。</p>
<p><strong>请注意：</strong> <span style="color: #ff0000;">包含特殊字符“与”符号 (&amp;) 和下划线 (_) 的同义词被视为有效，并且其结果会得以扩展。</span></p>
<p>对于使用所支持语言的客户，我们提供了预配置本地同义词文件。 英语文件名为 <code>Google_English_stems</code>，法语文件名为 <code>Google_French_stems</code>，依此类推。 默认情况下，这些文件会出现在查询扩展文件列表中。 每个文件都包含一组可作为标准字词补充的常用字词。 您可以照“原样”使用预配置本地文件；也可以下载文件并进行修改，然后将修改后的文件上传；还可以禁用该文件。 不过，您不能删除这些文件。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biaodianfu.com/serve-query-expansion.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
