I am writing a web-app in PHP and using MySQL as the storage and need to store a lot of data that will be constantly changing every time I query a server.
Two of the data elements are arrays and I'm not sure how to store them since they will be updated the next time I query the server.
I pretty much have a query that I run and it provides me with An array with some of it's elements as an array as well. Some information is basic like ping time, users on that server, but two of the elements are a list of data. One of the lists is a list of users currently on that server and so I don't know how I would store this if I don't want to have millions of entries in a table.
Hope this explanation was clear. If not, I'll be happy to expand.
Two of the data elements are arrays and I'm not sure how to store them since they will be updated the next time I query the server.
I pretty much have a query that I run and it provides me with An array with some of it's elements as an array as well. Some information is basic like ping time, users on that server, but two of the elements are a list of data. One of the lists is a list of users currently on that server and so I don't know how I would store this if I don't want to have millions of entries in a table.
Hope this explanation was clear. If not, I'll be happy to expand.
Comment