<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: [ANN]let&#8217;s play! Erlang&#8217;s webmine!</title>
	<atom:link href="http://erlang-china.org/misc/ann_webmine.html/feed" rel="self" type="application/rss+xml" />
	<link>http://erlang-china.org/misc/ann_webmine.html</link>
	<description>erlang 中文社区</description>
	<pubDate>Mon, 01 Dec 2008 19:11:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: jackyz</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-94</link>
		<dc:creator>jackyz</dc:creator>
		<pubDate>Tue, 29 May 2007 05:11:29 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-94</guid>
		<description>@goodman

木有做标雷总数是否等于雷数的检查，只做了尚未点开的雷数是否等于雷数的检查。比方：

总共10个雷，你标了10个（其中有2个标错了），另外还有2个没点开。标雷数等于雷总数。这样能不能算结束呢？

如果算结束，那算是成功还是失败呢？如果算失败，你明明有两个没有点开。而且，你标了也可以再改。算失败似乎不合理。算成功，就更不合理，分明标错了2个，怎么能算成功呢？

只能不算结束了。以剩下没有点开的作为判断结束的唯一条件。

另外，都反映慢，能不能告诉一声 ping 值是多少？</description>
		<content:encoded><![CDATA[<p>@goodman</p>
<p>木有做标雷总数是否等于雷数的检查，只做了尚未点开的雷数是否等于雷数的检查。比方：</p>
<p>总共10个雷，你标了10个（其中有2个标错了），另外还有2个没点开。标雷数等于雷总数。这样能不能算结束呢？</p>
<p>如果算结束，那算是成功还是失败呢？如果算失败，你明明有两个没有点开。而且，你标了也可以再改。算失败似乎不合理。算成功，就更不合理，分明标错了2个，怎么能算成功呢？</p>
<p>只能不算结束了。以剩下没有点开的作为判断结束的唯一条件。</p>
<p>另外，都反映慢，能不能告诉一声 ping 值是多少？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: goodman</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-93</link>
		<dc:creator>goodman</dc:creator>
		<pubDate>Mon, 28 May 2007 15:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-93</guid>
		<description>所有的雷都标出来了怎么不能结束？
速度是有点慢</description>
		<content:encoded><![CDATA[<p>所有的雷都标出来了怎么不能结束？<br />
速度是有点慢</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackyz</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-91</link>
		<dc:creator>jackyz</dc:creator>
		<pubDate>Sun, 27 May 2007 11:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-91</guid>
		<description>对了，比较慢，还有一个可能的原因是js代码之中的is_blocked开关，它的目的是实现“一次请求尚未返回，不允许发起下一次请求”的限制，防止连续的狂点。</description>
		<content:encoded><![CDATA[<p>对了，比较慢，还有一个可能的原因是js代码之中的is_blocked开关，它的目的是实现“一次请求尚未返回，不允许发起下一次请求”的限制，防止连续的狂点。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackyz</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-90</link>
		<dc:creator>jackyz</dc:creator>
		<pubDate>Sun, 27 May 2007 11:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-90</guid>
		<description>“比较慢”：部分是网络原因，服务器在国外，我这里的 ping 值是 500 多 ms 。在目前的 push 实现方式下，一次点击，延迟需要乘以 2 ，也就是说要延迟 1 秒。慢就可想而知了。另外 js 也有问题，没有做 img 的 preload ，已经改进了一下。

“用着用着没有反应了”：原因是在迅速反复的点击时（叠加的请求），会走到一支不常的流程中去，而该流程会出一个异常，导致 process crash 。已经 fix 掉了。

“公开源码”？暂时没有这个计划。</description>
		<content:encoded><![CDATA[<p>“比较慢”：部分是网络原因，服务器在国外，我这里的 ping 值是 500 多 ms 。在目前的 push 实现方式下，一次点击，延迟需要乘以 2 ，也就是说要延迟 1 秒。慢就可想而知了。另外 js 也有问题，没有做 img 的 preload ，已经改进了一下。</p>
<p>“用着用着没有反应了”：原因是在迅速反复的点击时（叠加的请求），会走到一支不常的流程中去，而该流程会出一个异常，导致 process crash 。已经 fix 掉了。</p>
<p>“公开源码”？暂时没有这个计划。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pandawang</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-89</link>
		<dc:creator>pandawang</dc:creator>
		<pubDate>Sun, 27 May 2007 05:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-89</guid>
		<description>反应比较慢，js 的原因？
然后就是用着用着没有反应了，能否公开源码看看：）</description>
		<content:encoded><![CDATA[<p>反应比较慢，js 的原因？<br />
然后就是用着用着没有反应了，能否公开源码看看：）</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackyz</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-87</link>
		<dc:creator>jackyz</dc:creator>
		<pubDate>Sun, 27 May 2007 03:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-87</guid>
		<description>嗯，确实如此。重启之后会恢复正常，但是运行一段更长的时间之后又会出现这种情况。
只是不知道，要等多久。看来应该再分析一下。</description>
		<content:encoded><![CDATA[<p>嗯，确实如此。重启之后会恢复正常，但是运行一段更长的时间之后又会出现这种情况。<br />
只是不知道，要等多久。看来应该再分析一下。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lijie</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-86</link>
		<dc:creator>lijie</dc:creator>
		<pubDate>Sat, 26 May 2007 21:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-86</guid>
		<description>还是玩不了，点击start没有反应，FF和IE上都是如此。</description>
		<content:encoded><![CDATA[<p>还是玩不了，点击start没有反应，FF和IE上都是如此。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackyz</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-85</link>
		<dc:creator>jackyz</dc:creator>
		<pubDate>Sat, 26 May 2007 18:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-85</guid>
		<description>tips: 如果总是出现问题，请先访问 http://erlang-china.org:8088/erlq/push/close 重置，再重新试试。</description>
		<content:encoded><![CDATA[<p>tips: 如果总是出现问题，请先访问 <a href="http://erlang-china.org:8088/erlq/push/close" rel="nofollow">http://erlang-china.org:8088/erlq/push/close</a> 重置，再重新试试。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jackyz</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-84</link>
		<dc:creator>jackyz</dc:creator>
		<pubDate>Sat, 26 May 2007 18:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-84</guid>
		<description>noticket 是无法识别 player 的意思。服务器一直没有挂。

服务器上的网路连接比和本地测试环境慢，两个 ajax call 之间有时会出现时序异常，从而导致这个问题。

已经更新了程序，解决了此bug。谢谢反馈。</description>
		<content:encoded><![CDATA[<p>noticket 是无法识别 player 的意思。服务器一直没有挂。</p>
<p>服务器上的网路连接比和本地测试环境慢，两个 ajax call 之间有时会出现时序异常，从而导致这个问题。</p>
<p>已经更新了程序，解决了此bug。谢谢反馈。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arbow</title>
		<link>http://erlang-china.org/misc/ann_webmine.html#comment-83</link>
		<dc:creator>Arbow</dc:creator>
		<pubDate>Sat, 26 May 2007 09:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://erlang-china.org/misc/ann_webmine.html#comment-83</guid>
		<description>莫非是server程序挂了，客户端连不上就显示noticket？</description>
		<content:encoded><![CDATA[<p>莫非是server程序挂了，客户端连不上就显示noticket？</p>
]]></content:encoded>
	</item>
</channel>
</rss>
