Parallel::ForkManager - A simple parallel processing fork manager Parallel::ForkManager - 簡単な並列処理によるforkマネージャー 概要¶ use Parallel::ForkManager; $pm = new Parallel::ForkManager($MAX_PROCESSES); foreach $data (@all_data) { # Forks and returns the pid for the child: my $pid = $pm->start and next; ... do some work with $data in the child process ... ... 子プロセスにより$dataに関するいくつかの処理を行う ... $pm->finish; # Ter
NAME AnyEvent::Intro - an introductory tutorial to AnyEvent Introduction to AnyEvent This is a tutorial that will introduce you to the features of AnyEvent. The first part introduces the core AnyEvent module (after swamping you a bit in evangelism), which might already provide all you ever need: If you are only interested in AnyEvent's event handling capabilities, read no further. The second part
vimとかdiffとか何でもかんでもカラーリングしたい自分はperldocも綺麗に見たいっ!! ということで軽く調べてみた。 perldoc.vim http://subtech.g.hatena.ne.jp/secondlife/20081001/1222845699 http://github.com/hotchpotch/perldoc-vim/tree/master vimの中で見れるperldoc 知りたいモジュール名の上でKってやると別のウィンドウ上でperldocが展開されてsを押すとソースコードが一発で見れる. これはかなり使えます。なんか昔の俺が質問してるけどlocaleには注意!! ただperldoc上のKはうまくいくのだけれど,ソースコード上のモジュールはうまく読み込んでくれない。(例えばMooseなら大丈夫だが,::付きだと失敗する。例えばMooseX::YAMLの
検索 検索結果のページ分け 問い合わせに対して大量の結果が返されることが予想される時は、DBIx::Classに対して結果セットをページ分け(一度に少しずつ取得)するよう要求することができます: my $rs = $schema->resultset('Artist')->search( undef, { page => 1, # 取得したいページ番号(デフォルトは1) rows => 10, # ページ毎の件数 }, ); return $rs->all(); # 1ページ目を全て取得する page属性は、検索において必ずしも指定する必要はありません: my $rs = $schema->resultset('Artist')->search( undef, { rows => 10, } ); return $rs->page(1); # 最初の10レコードを含むDBIx::Class
NAME DBIx::Class::ResultSet - Responsible for fetching and creating resultset. SYNOPSIS my $rs = $schema->resultset('User')->search(registered => 1); my @rows = $schema->resultset('CD')->search(year => 2005); DESCRIPTION The resultset is also known as an iterator. It is responsible for handling queries that may return an arbitrary number of rows, e.g. via "search" or a has_many relationship. In th
perlmodlib - constructing new Perl modules and finding existing ones Many modules are included in the Perl distribution. These are described below, and all end in .pm. You may discover compiled library files (usually ending in .so) or small pieces of modules to be autoloaded (ending in .al); these were automatically generated by the installation process. You may also discover files in the library
perl でのコーディング中に perldoc で、perlfunc や perlreref を参照することは多々あると思います。 そのドキュメントが日本語ならば、もうちょっと読みやすいと思います。幸い、perldocjp という日本語化プロジェクトで、いくつかの pod ファイルが日本語化されて公開されているので、それをダウンロードして入れ替えてみましょう。 ウェブで公開されているものは、pod2html で HTML 化されたものですので、cvs レポジトリから pod ファイルを取得しましょう。 cvs -z3 -d:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/perldocjp export -D tomorrow -d 5.10.0 docs/perl/5.10.0/ chmod -R 0644 5.10.0 取得した pod は
NAME SYNOPSIS INTRODUCTION USAGE EXAMPLE ABSTRACT DESCRIPTION Instance Script Methods Sub-classing and Override Methods Application Module Methods Testing PLUG-INS Existing plug-ins Writing Plug-ins Writing Advanced Plug-ins - Using callbacks COMMUNITY SEE ALSO AUTHOR CREDITS LICENSE Page Top NAME CGI::Application - 再利用可能なWEBアプリケーションを構築するためのフレームワーク Page Top SYNOPSIS # "WebApp.pm"の内容... package We
NAME Template::Manual::Directives - Template directives Accessing and Updating Template Variables GET The GET directive retrieves and outputs the value of the named variable. [% GET foo %] The GET keyword is optional. A variable can be specified in a directive tag by itself. [% foo %] The variable can have an unlimited number of elements, each separated by a dot. Each element can have arguments sp
NAME Template::Manual::VMethods - Virtual Methods Scalar Virtual Methods chunk(size) Splits the value into a list of chunks of a certain size. [% ccard_no = "1234567824683579"; ccard_no.chunk(4).join %] Output: 1234 5678 2468 3579 If the size is specified as a negative number then the text will be chunked from right-to-left. This gives the correct grouping for numbers, for example. [% number = 123
perl - Practical Extraction and Report Language NAME SYNOPSIS DESCRIPTION ENVIRONMENT AUTHOR FILES SEE ALSO DIAGNOSTICS BUGS NOTES NAME perl - Practical Extraction and Report Language SYNOPSIS perl [ -sTuU ] [ -hv ] [ -V[:configvar] ] [ -cw ] [ -d[:debugger] ] [ -D[number/list] ] [ -pna ] [ -Fpattern ] [ -l[octal] ] [ -0[octal] ] [ -Idir ] [ -m[-]module ] [ -M[-]'module...' ] [ -P ] [ -S ] [ -x[di
NAME SYNOPSIS DESCRIPTION 概要 表示可能なオブジェクト その他のオブジェクト PDFJのインストール PDFJの使用 文書オブジェクトの作成 ページオブジェクトの作成 フォントオブジェクトの作成 テキストオブジェクトの作成 テキストオブジェクトの入れ子による部分スタイル指定 イタリックとボールド 段落オブジェクトの作成 段落オブジェクトの分割 空白オブジェクトとグルー ブロックオブジェクトの作成 配列ブロック内オブジェクトの間隔とタイプ名 ブロックオブジェクトの分割 画像オブジェクトの作成 図形オブジェクトの作成 追加の図形オブジェクトメソッド 色オブジェクトの作成 表示可能オブジェクトのページへの配置 ページのレイヤ ミニページオブジェクトの作成 スタイルのコピー スタイル指定のさまざまな方法 PDF文書の出力 文書情報の追加 アウトライン ハイパーリンク 暗号
名前¶ SQL::Abstract - Perlのデータ構造からSQL文を生成する 概要¶ use SQL::Abstract; my $sql = SQL::Abstract->new; my($stmt, @bind) = $sql->select($table, \@fields, \%where, \@order); my($stmt, @bind) = $sql->insert($table, \%fieldvals || \@values); my($stmt, @bind) = $sql->update($table, \%fieldvals, \%where); my($stmt, @bind) = $sql->delete($table, \%where); # それから、これらをDBIステートメントで使う my $sth = $dbh->prepare($stmt);
名前¶ HTML::FillInForm - HTML フォームにCGIデータをすまわせる 説明¶ このモジュールは、前のページのHTMLフォームからのデータを HTMLの input や textarea や select タグに自動的に挿入します。 HTML::Parserのサブクラスであり、HTML::ParserでHTMLを解析し、値をフォームタグに挿入します。 有益な適用例の一つは、ユーザーがHTMLフォームを、必要事項を埋めずにサブミットしたら、 HTML::FillInFormは、全てのフォーム要素がサブミットされた内容を含んでいる状態で、 HTMLフォームを再表示するのに使われえます。 概要¶ この例では、$htmlForm に入っているHTMLフォームに、$qの中に入っているCGIパラメータで埋めます。 たとえば、以下では、どの"name"テキストフィールドの値も"Joh
名前¶ DBIx::Class::Manual::Cookbook - レシピいろいろ レシピ¶ 検索¶ ページ処理された結果セット¶ When you expect a large number of results, you can ask DBIx::Class for a paged resultset, which will fetch only a small number of records at a time: 結果セットが膨大になりそうなら、ページ処理された結果をDBIx::Classで取得できます。 一回に、少しのレコードしかとってきません: my $rs = $schema->resultset('Artist')->search( undef, { page => 1, # page to return (defaults to 1) rows => 10, #
名前¶ DBIx::Class::Manual::Intro - DBIx::Class イントロダクション イントロダクション¶ So, you are bored with SQL, and want a native Perl interface for your database? Or you've been doing this for a while with Class::DBI, and think there's a better way? You've come to the right place. で、SQLにうんざりしてません?データベース用に自然なPerlのインターフェースが欲しくない? もしくは、しばらくClass::DBIで、それをしていたけど、もっと良いやりかたがあると思わなかった? 良いところに来ましたね。 THE DBIx::Class WAY¶ H
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く