Eugene Blikh

Results 19 issues of Eugene Blikh

cURL easy API contains functions `curl_easy_escape` and `curl_easy_unescape` that are respectively analogues of `url_encode` and `url_decode`: * https://curl.haxx.se/libcurl/c/curl_easy_escape.html * https://curl.haxx.se/libcurl/c/curl_easy_unescape.html Old implementation of these functions in `http.server` are slow and...

feature
lua
app

Example: ``` tarantool> fun.duplicate(1, 2, 3):take(3):each(print) 1 2 3 1 2 3 1 2 3 --- ... tarantool> fun.zip({1, 2, 3}, fun.duplicate(1, 2, 3)):take(3):each(print) 1 1 2 1 3 1...

bug

Right now driver implementation consists of written in C parts of code (duplicates of tarantool-c driver) and uses tp.h that's not supported anymore. The better way is to replace all...

feature
php7
refactoring

# Overview Several implementations of servers speaking the memcached protocol have backends that allow for inexpensive operations over ranges of keys. The purpose of this document is to standardize the...

feature
good first issue

VBuckets in memcached [explained](http://dustin.sallings.org/2010/06/29/memcached-vbuckets.html) Example - [libvbucket](https://github.com/couchbase/libvbucket) using Ketama algo

feature

Give an ability to select `vinyl` as engine for storing data.

good first issue

``` (gdb) bt #0 0x00007ffff6489cc9 in __GI_raise (sig=sig@entry=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:56 #1 0x00007ffff648d0d8 in __GI_abort () at abort.c:89 #2 0x00007ffff6482b86 in __assert_fail_base ( fmt=0x7ffff65d3830 "%s%s%s:%u: %s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x6aae60 "((((GCobj *)(uintptr_t)((tv)->fr.func).gcptr32)))->gch.gct...

bug