09.07.2019, 09:55
There's no call limit. There's a memory limit but I doubt that your tables will be big enough to use a lot of it.
One thing to consider with tables in storage is that you might get race conditions when several scripts want to modify table data. If you don't need tables with multiple levels then built-in Redis hash functions can be used instead.
Right now it's hard to offer the best solution because I don't know what task do you have.
One thing to consider with tables in storage is that you might get race conditions when several scripts want to modify table data. If you don't need tables with multiple levels then built-in Redis hash functions can be used instead.
Right now it's hard to offer the best solution because I don't know what task do you have.