memcache 1.2.4 → 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :build:
3
3
  :minor: 2
4
- :patch: 4
4
+ :patch: 5
5
5
  :major: 1
@@ -311,7 +311,8 @@ static VALUE mc_cas(int argc, VALUE *argv, VALUE self) {
311
311
  Data_Get_Struct(self, memcached_st, mc);
312
312
  rb_scan_args(argc, argv, "32", &key, &value, &cas, &expiry, &flags);
313
313
 
314
- key = StringValue(key);
314
+ key = StringValue(key);
315
+ if (!use_binary(mc)) key = escape_key(key, NULL);
315
316
  value = StringValue(value);
316
317
 
317
318
  result = memcached_cas(mc, RSTRING_PTR(key), RSTRING_LEN(key), RSTRING_PTR(value), RSTRING_LEN(value),
@@ -337,7 +338,8 @@ VALUE mc_incr(int argc, VALUE *argv, VALUE self) {
337
338
  Data_Get_Struct(self, memcached_st, mc);
338
339
  rb_scan_args(argc, argv, "11", &key, &amount);
339
340
 
340
- key = StringValue(key);
341
+ key = StringValue(key);
342
+ if (!use_binary(mc)) key = escape_key(key, NULL);
341
343
  amount = RTEST(amount) ? NUM2INT(amount) : 1;
342
344
 
343
345
  result = memcached_increment(mc, RSTRING_PTR(key), RSTRING_LEN(key), amount, value);
@@ -360,7 +362,8 @@ VALUE mc_decr(int argc, VALUE *argv, VALUE self) {
360
362
  Data_Get_Struct(self, memcached_st, mc);
361
363
  rb_scan_args(argc, argv, "11", &key, &amount);
362
364
 
363
- key = StringValue(key);
365
+ key = StringValue(key);
366
+ if (!use_binary(mc)) key = escape_key(key, NULL);
364
367
  amount = RTEST(amount) ? NUM2INT(amount) : 1;
365
368
 
366
369
  result = memcached_decrement(mc, RSTRING_PTR(key), RSTRING_LEN(key), amount, value);
@@ -380,6 +383,8 @@ VALUE mc_delete(VALUE self, VALUE key) {
380
383
 
381
384
  Data_Get_Struct(self, memcached_st, mc);
382
385
 
386
+ key = StringValue(key);
387
+ if (!use_binary(mc)) key = escape_key(key, NULL);
383
388
  result = memcached_delete(mc, RSTRING_PTR(key), RSTRING_LEN(key), 0);
384
389
 
385
390
  if (result == MEMCACHED_SUCCESS) {
@@ -399,7 +404,8 @@ VALUE mc_add(int argc, VALUE *argv, VALUE self) {
399
404
  Data_Get_Struct(self, memcached_st, mc);
400
405
  rb_scan_args(argc, argv, "22", &key, &value, &expiry, &flags);
401
406
 
402
- key = StringValue(key);
407
+ key = StringValue(key);
408
+ if (!use_binary(mc)) key = escape_key(key, NULL);
403
409
  value = StringValue(value);
404
410
 
405
411
  result = memcached_add(mc, RSTRING_PTR(key), RSTRING_LEN(key), RSTRING_PTR(value), RSTRING_LEN(value),
@@ -423,7 +429,8 @@ VALUE mc_replace(int argc, VALUE *argv, VALUE self) {
423
429
  Data_Get_Struct(self, memcached_st, mc);
424
430
  rb_scan_args(argc, argv, "22", &key, &value, &expiry, &flags);
425
431
 
426
- key = StringValue(key);
432
+ key = StringValue(key);
433
+ if (!use_binary(mc)) key = escape_key(key, NULL);
427
434
  value = StringValue(value);
428
435
 
429
436
  result = memcached_replace(mc, RSTRING_PTR(key), RSTRING_LEN(key), RSTRING_PTR(value), RSTRING_LEN(value),
@@ -445,6 +452,10 @@ VALUE mc_append(VALUE self, VALUE key, VALUE value) {
445
452
 
446
453
  Data_Get_Struct(self, memcached_st, mc);
447
454
 
455
+ key = StringValue(key);
456
+ if (!use_binary(mc)) key = escape_key(key, NULL);
457
+ value = StringValue(value);
458
+
448
459
  result = memcached_append(mc, RSTRING_PTR(key), RSTRING_LEN(key), RSTRING_PTR(value), RSTRING_LEN(value), 0, 0);
449
460
 
450
461
  if (result == MEMCACHED_SUCCESS) {
@@ -462,6 +473,10 @@ VALUE mc_prepend(VALUE self, VALUE key, VALUE value) {
462
473
 
463
474
  Data_Get_Struct(self, memcached_st, mc);
464
475
 
476
+ key = StringValue(key);
477
+ if (!use_binary(mc)) key = escape_key(key, NULL);
478
+ value = StringValue(value);
479
+
465
480
  result = memcached_prepend(mc, RSTRING_PTR(key), RSTRING_LEN(key), RSTRING_PTR(value), RSTRING_LEN(value), 0, 0);
466
481
 
467
482
  if (result == MEMCACHED_SUCCESS) {
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{memcache}
8
- s.version = "1.2.4"
8
+ s.version = "1.2.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Justin Balthrop"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: memcache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Balthrop