In file included from Cego.c:142:
/usr/local/lib/perl5/site_perl/5.12.4/mach/auto/DBI/Driver_xst.h: In function 'int dbdxst_bind_params(SV*, imp_sth_t*, I32, I32)':
/usr/local/lib/perl5/site_perl/5.12.4/mach/auto/DBI/Driver_xst.h:72: error: cannot convert 'imp_sth_t*' to 'imp_xxh_t*' in argument passing
/usr/local/lib/perl5/site_perl/5.12.4/mach/auto/DBI/Driver_xst.h: In function 'SV* dbdxst_fetchall_arrayref(SV*, SV*, SV*)':
/usr/local/lib/perl5/site_perl/5.12.4/mach/auto/DBI/Driver_xst.h:98: error: cannot convert 'imp_sth_t*' to 'imp_xxh_t*' in argument passing
./Cego.xsi: In function 'void XS_DBD__Cego__db__login(CV*)':
./Cego.xsi:96: error: invalid conversion from 'const char*' to 'char*'
./Cego.xsi:97: error: invalid conversion from 'const char*' to 'char*'
[..]
Reported by: pointyhat
still has issues w/ it, stick to 1.8 for now
PR: ports/160402
Submitted by: Mikhail T. <mi@aldan.algebra.com>
Approved by: maintainer timeout (knu ; 159 days)
Sponsored by: RideCharge Inc. / TaxiMagic
this is better then nothing, and will help the 1.8 -> 1.9 transition
PR: ports/160404
Submitted by: Mikhail T. <mi@aldan.algebra.com>
Approved by: maintainer timeout (jpaetzel ; 158 days)
Sponsored by: RideCharge Inc. / TaxiMagic
<ChangeLog>
UPGRADE URGENCY: low/moderate if you don't experience any of the fixed
problems.
* [BUGFIX] Fixed false positive in issue #141 regression test.
* [BUGFIX] Slave should not expire keys when loading an RDB after a SYNC.
* [BUGFIX] Don't increment stats for key misses / hits when key is written.
* [BUGFIX] sds.c library now don't allocate more than 1MB ahead.
* 32 bit instances without a maxmemory set now get a default limit of 3.5GB
with maxmemory-policy set to noeviction.
* Better crash report on crash (containing current client and command arguments).
</ChangeLog>
Apologies for the noise here; I'm getting used to the consequences of
slaving ports like this-- postgresql has an unusual arrangement here.
Submitted by: Neil Darlow (neil@darlow.co.uk)
- Add my LOCAL as MASTER_SITES
- Take maintainership
Changes: http://bazaar.launchpad.net/~python-memcached-team/python-memcached/trunk/view/head:/ChangeLog
- Bug #745633: Values of maximum size are not stored API inconsistency, max
value length was tested for <= while max KEY length was <. So I picked that
keys and values *LONGER* than the specified max value are what is used, and
added documentation and tests to that effect. The test for max value tested
that length plus 4, so I've changed that to be that value plus 1. Issue found
by matt-quru.
- Bug #713488: Issues Invalid "delete" command. Protocol has changed so that the
"delete" operation no longer takes a "time" argument. It seems that some
servers will refuse a "delete key 0" while others will accept it, but the
official server will NOT accept "delete key 1". So I've changed it so that if
no "time" argument is specified, no time argument is sent to the server.
- Bug #713451: server.expect("END") needs to be in a finally block Expect an
"END" when the _recv_value() raises an exception. Patch by Jay Farrimond.
- Bug: #741090: cas cache can grow unbounded. Default now is that the cache is
not used, unless the "Client()" object is created with "cache_cas=True". In
that case, you need to have your own cas clearing code, a simple one would be
to use Client().reset_cas() to completely clear the cas_ids cache. Problem
pointed out by Shaun Cutts.
- Bug #728359: Make python-memcache work on memcache restarts. Patch by Tarek
Ziade', reviewed and further patches submitted by Hugo Beauze'e-Luysse and
Neganov Alexandr.
- Bug #798342: If memcached server sends unknown flag in response for "get",
results in: "UnboundLocalError: local variable 'val' referenced before
assignment" Now returns "None" instead. Patch by Sharoon Thomas