This is a question which is sometimes asked. But this question is seldomly answered.
You maybe read a lot about it or not. Here is one answer. WordPress is capable of handling big data in some boundaries. But to say clearly, that’s mostly dependent on Server environment. How much RAM and what PHP execution time. As we tried recently to use one million records of strings for some specific use case, we calculated that a JSON file of 28 Megabyte. In our Imagination it is not possible read that file somewhere because it will exceed execution time.
Than we came to a very often used conclusion again. We store this in wp_ options. As single Option it might be the same, it would definitely possible as a guy from WordPress told me once one Option can hold 4 gig, maybe the highest value of a field in MySQL? But the most used approach here is to count the options like option_name_(number). But we did it with Update _option(‘val’,’val’), as you recolonized the third parameter is missing. The third one is the autoload, when we leave it like this it kills WordPress on 260’000 records with 268 an error it exceeded 268 mb ram. When i take the third Parameter to $autoload =f alse everything runs smoothly and the project can go on.
If you write very Clean WordPress Code, WordPress is able to handle big data, if not better leave it on its own devices.
I am happy to hear your WordPress big data ideas over Twitter.
Read our other articles:
- Bezos API Mandate
According to an Amazon employee at that time, it went something along these lines: 1) All teams will henceforth expose their data and functionality through service interfaces. 2) Teams must communicate with each other through these interfaces. 3) There will be no other form of interprocess com...
» Read more
- One #uncloud please
One #uncloud please I took a drastic step to get my data volumes under control. I replaced Dropbox with Syncthing. Why is that good? You think about your data. What do you really need in the cloud and where? Dropbox had some funny quirks on the Mac. For example, at 200 GB it always took forever to start the app. In the Finder it always in...
» Read more
- Change of a paradigm
Change of a paradigm I wanted to hate the new #WordPress Editor. My cons (at least what I thought) - it's Facebook software - it's breaking old sites - all my plugins do not work anymore - nobody needs shortcodes anymore - it's damn slow. - JavaScript is the programming Language of the 😈 You can see, u...
» Read more