kkmuffme

Results 304 comments of kkmuffme
trafficstars

I checked with debug http://nginx.org/en/docs/debugging_log.html but that wasn't really useful, since the issue is already obvious (and that's also what I see in the debug log that those headers aren't...

It doesn't work with bytecode compiled with luac created bytecode either https://linux.die.net/man/1/luac which has been part of lua since ages. ``` echo 'return redis.call("GET", KEYS[1])' > script.lua luac -o script.out...

Are you saying Redis parses the .lua to check for permissions before actually passing it to the lua interpreter/executing it?

Are you talking about ACL related permission checks? (or validation the lua to ensure it's not breaking out of the sandbox?) Once a script is loaded (and Redis has the...

>not sure if it's worth it, isn't it enough to just use load + evalsha? In most cases it is I guess. Since other parts of the environment we use...

>openresty's lua script is provided by the developer >redis's script is from users Who allows/uses end-user input in redis scripts? (except the Redis demo page for the commands). Usually the...

Should be an array shape with all public properties including inherited ones like `array{name: string, foo?: int}` with the optional ones marked with ?

Thanks, but that issue misses the point: - yes, phpstan added support for x|void (and psalm has long had that) - yes, WP is bad for using these in the...

In functionMap.php change `whatever|void` to `whatever|null`