You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Igbinary Serialization provides a better performance and lower memory
196
+
| usage than PHP Serialization.
197
+
|
198
+
| * ~ Don't forget to enable igbinary extension if this option is true. ~ *
199
+
|
200
+
*/
201
+
'igbinary_serialization' => false,
202
+
```
188
203
* Banned User Check
189
204
```php
190
205
/*
@@ -272,7 +287,7 @@ You may install the PhpRedis PHP extension via PECL. The extension is more compl
272
287
273
288
"PhpRedis is faster about x6 times. Using igbinary serializer reduces stored data size about 3x times. If Redis installed on separate machines, reducing network traffic is a very significant speedup."
274
289
275
-
In my opinion, using [PhpRedis](https://github.com/phpredis/phpredis) and serializer as igbinary ([Lodash](https://github.com/akalongman/laravel-lodash)package it provide this for Laravel.) in production environment gives a great performance.
290
+
In my opinion, using [PhpRedis](https://github.com/phpredis/phpredis) and serializer as igbinary ( Laravel does not support igbinary serialization on Redis. However, this package provides igbinary serialization support for Laravel. Please check `config/jwtredis.php` file. ) in production environment gives a great performance.
276
291
277
292
You can review this [article](https://medium.com/@akalongman/phpredis-vs-predis-comparison-on-real-production-data-a819b48cbadb) for performance comparison [PhpRedis](https://github.com/phpredis/phpredis) vs. [Predis](https://github.com/nrk/predis).
0 commit comments