Displaying 6 results from an estimated 6 matches for "kuwata".
2007 Apr 03
4
Replacing ERB with Erubis
Hey guys,
I''ve been hearing a lot about erubis: http://www.kuwata-lab.com/erubis/
Especially about how much faster it is than straight ERB.
In their Ruby on Rails support docs: http://www.kuwata-lab.com/erubis/users-guide.05.html#topics-rails
They state that with a few added lines to your environment.rb it will
replace ERB completely.
I''m wondering if...
2008 Jun 13
2
Rails 2.1: invalid date automatically convertion
Hi all,
Rails 2.1 seems to converts the following parameters
{''birth(1i)''=''1990'', ''birth(2i)''=>''2'', ''birth(3i)''=>''31''}
into date ''1990-03-02'' automatically.
Is it able to inhibit this convertion?
--
makoto kuata
2006 Dec 19
7
Improve the rendering speed of rhtml
I found through the log file that the render of the rhtml template would
take too much time if there exists ruby code in the rhtml files.In many
cases,these ruby code are tied with these rhtml files closely and can
not be decoupled from that,therefore,i have a question that,is there
exist some way to improve the rendering speed of rhtml when some ruby
codes are included?
--
Posted via
2010 Jan 26
1
TCP throughput?
...; parameter for both end because I wanted to go through
NAT. However, by using TCPOnly parameter, the response of PING slowed
down significantly.
The PING response with UDP is about 4ms, but it bumped up to 2000ms with
TCP.
I am just curious whether this is caused by using TCP.
Regards
Masateru KUWATA
Computer & Communications Consulting
Phone: 070-5465-6505(Domestic)/+81-70-5465-6505(Oversea?
Mobile mail:masateru_kuwata at wm.pdx.ne.jp
Profile: http://www.geocities.jp/mki_ltd/page002.html
BLOG : http://blogs.yahoo.co.jp/mki_ltd/MYBLOG/
2010 Jan 17
1
How to improve the throughput
...contrast to OpenVPN.
My test revealed that tinc is faster in PING response (almost half of
OpenVPN). However, when I tested with iperf, tinc's throughput is about
half of OpenVPN.
I am wondering if anyone can tell me how to tune the throughput of tinc.
Thanks in advance,
Regards
Masateru KUWATA
Computer & Communications Consulting
Phone: 070-5465-6505(Domestic)/+81-70-5465-6505(Oversea?
Mobile mail:masateru_kuwata at wm.pdx.ne.jp
Profile: http://www.geocities.jp/mki_ltd/page002.html
BLOG : http://blogs.yahoo.co.jp/mki_ltd/MYBLOG/
2010 Apr 06
3
(Rails3-master) erubis: how to use things like preprocessing?
(Rails3 latest git master)
Subject says it. I''m trying to figure out how to use erubis features
described here: http://www.kuwata-lab.com/erubis/users-guide.05.html#rails,
especially preprocessing. My question is, where do I place the
Erubis::Helpers::RailsHelper.preprocessing=true
Not in application.rb, at that point the object does not exist yet it
seems. I wonder why I don''t see ANY mention whatsoever of such...