Timucin Ünal

Results 34 comments of Timucin Ünal

We could use the following project to implement encryption instead of reinventing the wheel: https://github.com/defuse/php-encryption The dependency graph does not look bad too. https://github.com/defuse/php-encryption/network/dependencies But we would need to add...

@sk-pro-cloud I am sorry but I did not understand what you meant? What would be handy?

https://github.com/illuminate/encryption The implementation of encryption in laravel is very interesting and simple.. Could that be something for us?

## Encryption modes I think when implementing encryption we should implement it with 3 modes. 1. No encryption 2. Encrypt whole store 3. Encrypt parts of documents ## How will...

Hi @REDAL Thank you for your enhancement request. I also thought about that. But I have no clue how to implement something like an index table in a good way....

Your idea is nice, sure it would be great if you could try to solve that problem. What are the main problems when trying to deal with large files containing...

@REDAL The problem with `fopen`, `fseek`, `fwrite` is the following. A simple example: We have a file that stores the following string: "Hello world" (11 Characters) And we update the...

Hi @jellehak thank you for your PR. Every type of contribution is always welcome. With your implementation I see the following problems: 1. It will be a breaking change and...

Hi @webghostx It's probably a little bit late, but this here could be a little bit more elegant implementation. ```php // .... $where = [['_hostname', "=", $hostname]]; if(isset($entry['_id'])){ $where[] =...

Hi @REDAL Benchmarks sound nice, feel free to make some :)