Aapo Talvensaari

Results 278 comments of Aapo Talvensaari

@outsinre also things like these: https://github.com/Kong/kong/blob/master/kong/plugins/aws-lambda/handler.lua#L240-L242

@GGabriele we never got final requirements. Should we go ahead and merge this?

@mikhailov I also recommend using bundled Lua cJSON (aka fork of this: http://www.kyne.com.au/~mark/software/lua-cjson.php), see it here: https://github.com/openresty/lua-cjson It is a good all around JSON encoder and decoder. My `lua-resty-libcjson` is...

These clients don't have support for Cluster redirection or plentitude of other things that need to be implemented for full Redis cluster support: - redis-nginx-module - redis2-nginx-module - lua-resty-redis Redis...

Also check other options like Codis and Twemproxy. Redis Cluster doesn't support all the Redis features, like pipelines for example.

There is Redis cluster client for Lua (which can be used with OpenResty): https://github.com/kong/resty-redis-cluster https://github.com/steve0511/resty-redis-cluster And there is one for Sentinels: https://github.com/ledgetech/lua-resty-redis-connector

Does: ``` #!/usr/bin/env -S resty -c 1024 ``` work with Linux these days?

I just tried some benchmarks. All the tests were run with resty (nginx version: openresty/1.7.7.1rc2) (luajit enabled runtime). Code is something like this (**note: if you use this code, please...

I'm currently writing a new parser only lib with jsmn (http://zserge.com/jsmn.html). Let's see how it works out compared to others. It should be a really fast one, but there is...

I already did jsmn bindings (not yet published), but the best I got from it was (with that citylots.json): ``` Decoding Time: 7.467336 ``` Actually, it seems it is pretty...