注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
Here is an example code. DBIx::Tracer can hook the DB access in a lexical context. package MyApp:... Here is an example code. DBIx::Tracer can hook the DB access in a lexical context. package MyApp::Web; use DBIx::Tracer; sub render { my ($c, $tmpl, $vars) = @_; my $tracer = $ENV{IN_DEBUGGING} ? DBIx::Tracer->new( sub { my %args = @_; my $sql = $args{sql}; die "Do not execute query in a view: $sql"; } ) : undef; return $c->SUPER::render($tmpl, $vars); } Why do I need to deny it?Designer can execu
2012/11/10 リンク