Redis backed view counters

Redis backed view counters 2.5.0

No permission to download
What will happen if we have more then 100k threads?
This add-on only updates actively viewed threads, not total number of threads. I'm fairly sure most XF forums don't have nearly that many active threads at any given time.

The code actually works based on total number of keys, so it just takes longer to visit all of them;
 
I noticed that I tried to install this on a site and it wants an older version than is available to install. Same for redis flood checker.

Code:
Could not process SV-RedisViewCounter-2.5.0 (1).zip: The following requirements for Redis backed Views Counters were not met: Redis backed Views Counters requires Redis Cache v2.17.0.

I have newer than that version....
 
Make sure the Redis Cache add-on is installed and active, it looks like it is missing the + sign to indicate newer versions
 
Make sure the Redis Cache add-on is installed and active, it looks like it is missing the + sign to indicate newer versions

It is installed and active and I'm using it.

Code:
[HEADING=2]Oops! We ran into some problems.[/HEADING]
Could not process SV-RedisViewCounter-2.5.0.zip: The following requirements for Redis backed Views Counters were not met: Redis backed Views Counters requires Redis Cache v2.17.0.

Code:
Redis Information
Version    7.2.14
phpredis version    6.1.0
Serializer    igbinary
Free memory    Unlimited
Used memory    2.8 MB
Peak memory    4.1 MB
Maximum memory    0 bytes
Maximum memory policy    noeviction
To Redis (kbps)    28
From Redis (kbps)    1,946
Operations per second    31
DB 0 Keys    898
DB 0 Average TTL    4,526,676
Connected clients    2

I have different namespaces in the config.php -- since I have more than one site sharing the redis server, could it be related to that?Screenshot 2026-05-14 at 1.28.28 PM.webp
 
Make sure you've updated src/config.php to set the Cache provider;
PHP:
$config['cache']['provider'] = 'SV\RedisCache\Redis';
 
Back
Top Bottom