[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
SlideShare a Scribd company logo
Teng tips
   Chiba.pm #1

 id:karupanerura
Mobile Factory, Inc.
Profile

•   twitter: @karupanerura

•   software developer

•   C/C++/JavaScript/Perl

•   CPAN Author
What is Teng?
O/R Mapper
Teng tips
tips
Teng#bulk_insert
$teng->bulk_insert(
   table => [
     +{ foo => 1, bar => 2 },
     +{ foo => 3, bar => 4 },
   ],
);
Teng#fast_insert
my $id = $teng->fast_insert(
   table => +{
      foo => 1,
      bar => 2,
   },
);
Teng::Plugin::Lookup#lookup
my $row = $teng->lookup(
   table => +{
      foo => 1,
   },
);
# SQL: SELECT foo, bar FROM table WHERE foo = 1;
Teng#suppress_row_objects
Teng::Iterator#suppress_row_objects
Don’t row objet creation
more performance :)
column/+column
 search option
my $row = $teng->single(
   table => +{
      foo => 1,
   },
   +{

      column => [qw/foo/],
   }
);
search with
specific columns
more performance :)
$ENV{TENG_SQL_COMMENT}
     Teng#sql_comment
/* hoge.pl line at 3 */
SELECT foo, bar FROM
         table
DevOps :)
Teng#sql_builder
       +
    Teng#do
thank you
for listening

More Related Content

Teng tips

Editor's Notes

  1. \n
  2. (さらっと流す)\n\n佐藤健太と申します。\n仕事ではソフトウェア開発をやっていて、\nCとC++とJavaScriptとPerlを使うのが得意です。\nオープンソースの開発もやっていて、CPANというPerlのモジュールを公開するプラットフォームでいくつかのライブラリをモジュール化して公開しています。\n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n