XenForo on PHP7

Several of us are.
I really want to upgrade my server back to 7 series.. but if I bring my IPS license back online I have to regress again. One of those LCD things, don'cha know!
BTW, did they ever get it figured out what was the issue with your client that was having problems?
 
Now on PHP 7.0.3, I ditched Memcached and there is no performance drop.
Those are entirely different types of delays

memcached reduces DB calls (redis does it better)
php 7 is faster at php

Having a data store will reduce db calls, while also reducing php time can appear to cause no performance change because you had the performance improve, and get worse simultaneously

I <3 redis
I also use redis on wordpress
 
Redis or memcached, most single server websites won't see any noticeable difference in real life
If your site is lightly loaded, you likely won't see much of a difference in load

7% vs 10% is inconsequential

What you will see however, is a reduction in time to first byte on the html document
 
It doesn't matter if you have 100 posts, if those 100 posts get 10 million views a day, and you aren't using a static file caching system

Redis is just awesome, and is super simple to setup
 
Redis really, really, really, really does not need a gui

It's so incredibly simple in nature that its configured by a text file, and managed through baby's-my-first-database cli
It's nothing like mysql or anything for complexity
 
Top Bottom