<div>I use the agenzh's two modules</div>
<div><a href="http://wiki.nginx.org/HttpMemcModule">http://wiki.nginx.org/HttpMemcModule</a></div>
<div><a href="http://wiki.nginx.org/HttpEchoModule">http://wiki.nginx.org/HttpEchoModule</a></div>
<div> </div>
<div><strong></strong> </div>
<div><strong><font size="4">nginx configuration:</font></strong></div>
<div> </div>
<div><br>    location ~ "^/property/([0-9]+)" {<br>        charset utf-8;<br>        default_type 'text/javascript';<br>        echo -n "$arg_callback({\"property_$1\":\"";<br>        echo_location_async /statistic/operator "cmd=incr&key=property_$1&value=1";<br>
        echo -n "\")";<br>    }</div>
<div> </div>
<div>    # GET /statistic/operator?cmd=incr&key=property_23214&value=2<br>    # GET /statistic/operator?cmd=decr&key=property_23214&value=1<br>    location /statistic/operator {<br>        internal;<br>        set $memc_cmd $arg_cmd;<br>
        set $memc_key $arg_key;<br>        set $memc_value $arg_value;<br>        memc_pass statistics_server_pool;<br>        memc_cmds_allowed incr decr set get delete add;<br>        add_header X-Memc-Flags 'Statistic Crement';<br>
    }</div>
<div> </div>
<div> </div>
<div><strong><font size="4">Request URL:</font></strong></div>
<div> </div>
<div><a href="http://domain.net/property/23458?hi=231231&callback=himycallback201203455">http://<font color="#0000ff">domain.net</font>/property/23458?hi=231231&callback=himycallback201203455</a></div>
<div> </div>
<div> </div>
<div><strong><font size="4">The <font color="#ff6666">Unexpect</font>  incorrect Output: (Current Configuration)</font></strong></div>
<div> </div>
<div> himycallback201203455({"property_23458":2<font color="#ff6666">4<br>})</font></div>
<div> </div>
<div> </div>
<div>The new line after 24 is unexpected. and how can l delete the new line ?</div>
<div> </div>
<div><strong><font size="4">I <font color="#3333ff">expected</font> the correct Output: ( how to configuration the nginx ? )</font></strong></div>
<div> </div>
<div>himycallback201203455({"property_23458":24})</div>
<div> </div>
<div> </div>
<div> </div>
<div> </div>
<div> </div>