View Single Post
  #2  
Old 07-13-2024, 01:50 AM
wcked's Avatar
wcked wcked is offline   Thread Starter  
aka "puertoblack2003"
Mobile Model: Google Pixel 10 Pro
Mobile Carrier: Metro PCS
Mobile OS: Android

  usa
 
Join Date: November 8th, 2005
Location: North Philadelphia
Posts: 10,397
Downloads: 18
Uploads: 181
wcked has disabled reputation


View wcked's Profile   Edit Options Edit Profile Picture View wcked's Photo Album Add wcked's to Your Contacts Show Groups Edit Avatar Subscribed Threads Private Messages
Default Re: Installing Redis-x64 on Windows and Running Redis Server

I use redis

[1]. Yes, it is not the latest version, but it works fine. For php I use x64 Thread safe 7.3
[2] with the redis 4.2 driver
[3] I also changed the session handler from files to redis

Code

[Session]
; Handler used to store/retrieve data.
; http://php.net/session.save-handler
session.save_handler = redis
session.save_path = "tcp://127.0.0.1:6379"

extension=igbinary
extension=redis

session.save_handler = redis
session.save_path = "tcp://127.0.0.1:6379"

[1] https://github.com/microsoftarchive/...64-3.0.504.msi

[2] https://windows.php.net/downloads/re...2-VC15-x64.zip

[3] https://windows.php.net/downloads/pe...s-vc15-x64.zip
Attached Files
File Type: zip php_redis-4.2.0-7.3-nts-vc15-x64.zip (548.8 KB, 12 views)
File Type: zip php_redis-4.2.0-7.3-nts-vc15-x86.zip (528.3 KB, 10 views)
File Type: zip php_redis-4.2.0-7.3-ts-vc15-x64.zip (549.0 KB, 12 views)
File Type: zip php_redis-4.2.0-7.3-ts-vc15-x86.zip (528.8 KB, 15 views)
File Type: zip php-devel-pack-7.3.9-nts-Win32-VC15-x64.zip (1.24 MB, 12 views)
File Type: zip php-devel-pack-7.3.9-Win32-VC15-x64.zip (1.25 MB, 10 views)
File Type: msi Redis-x64-3.0.504.msi (6.42 MB, 9 views)

Reply With Quote