Changeset f87131
- Timestamp:
- 01/23/08 13:26:01 (4 years ago)
- Branches:
- master, ketama-compat
- Children:
- ff0698
- Parents:
- 23c7e8
- git-author:
- Tomash Brechko <tomash.brechko@…> (01/23/08 13:26:01)
- git-committer:
- Tomash Brechko <tomash.brechko@…> (01/23/08 13:26:01)
- Files:
-
- 2 edited
-
lib/Cache/Memcached/Fast.pm (modified) (3 diffs)
-
t/Memd.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lib/Cache/Memcached/Fast.pm
r23c7e8 rf87131 43 43 nowait => 1, 44 44 serialize_methods => [ \&Storable::freeze, \&Storable::thaw ], 45 utf8 => ($^V >= 5.008001 ? 1 : 0),45 utf8 => ($^V ge v5.8.1 ? 1 : 0), 46 46 }); 47 47 … … 516 516 } 517 517 518 if ($conf->{utf8} and $^V < 5.008001) {518 if ($conf->{utf8} and $^V lt v5.8.1) { 519 519 carp "'utf8' may be enabled only for Perl >= 5.8.1, disabled"; 520 520 undef $conf->{utf8}; … … 958 958 I<does> check for underflow, attempt to decrement the value below zero 959 959 would set the value to zero. Similar to L<DBI|DBI>, zero is returned 960 as "0E0", and evaluates to true in a boolean context.960 as I<"0E0">, and evaluates to true in a boolean context. 961 961 962 962 I<Return:> unsigned integer, new value for the I<$key>, or false for -
t/Memd.pm
r0c6861 rf87131 38 38 nowait => 1, 39 39 serialize_methods => [ \&Storable::freeze, \&Storable::thaw ], 40 utf8 => ($^V >= 5.008001 ? 1 : 0),40 utf8 => ($^V ge v5.8.1 ? 1 : 0), 41 41 ); 42 42
Note: See TracChangeset
for help on using the changeset viewer.
