Changeset 34026
- Timestamp:
- 06/18/09 13:18:27 (4 years ago)
- Location:
- lang/perl/DBIx-CouchLike/trunk
- Files:
-
- 2 modified
-
META.yml (modified) (2 diffs)
-
lib/DBIx/CouchLike.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/DBIx-CouchLike/trunk/META.yml
r33655 r34026 4 4 - 'FUJIWARA <fujiwara.shunichiro gmail.com>' 5 5 build_requires: 6 ExtUtils::MakeMaker: 6.42 6 7 Test::More: 0 8 configure_requires: 9 ExtUtils::MakeMaker: 6.42 7 10 distribution_type: module 8 generated_by: 'Module::Install version 0. 79'11 generated_by: 'Module::Install version 0.91' 9 12 license: perl 10 13 meta-spec: … … 16 19 - inc 17 20 - t 21 - xt 18 22 requires: 19 23 Class::Accessor::Fast: 0 -
lang/perl/DBIx-CouchLike/trunk/lib/DBIx/CouchLike.pm
r33620 r34026 526 526 DBIx::CouchLike is DBI based CouchDB like document database library. 527 527 528 =head1 METHODS 529 530 =over4 531 532 =item view 533 534 $itr = $couch->view( $view_name, \%options ); 535 536 options: 537 key => "foo", # key = "foo" 538 key => ["foo", "bar"], # key = "foo" OR key = "bar" 539 key => { "<" => "10" }, # key < 10 540 key_like => "foo%", # key LIKE "foo%" 541 key_reverse => 1, # ORDER BY key DESC 542 value_reverse => 1, # ORDER BY value DESC 543 include_docs => 1, # return original document with key, value pair (map only) 544 545 =back 546 528 547 =head1 AUTHOR 529 548
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)