#PSN-price
1 messages · Page 1 of 1 (latest)
I’m creating prices using api. For each user there will be at least 24 custom prices. So when the system scales up, I need to know if there is any limit to prevent issues in the future.
there's no such limits
So basically I can create 100000s of prices under a product
Still not sure if that’s the right way.
Should I be reusing the prices if the same value exists?
yep, or millions
ideally yes but it depends on the use case, it seems strange to me that it's impossible to share anything between customers and you need that many
Yes 80% of the time the customers will be using same amount
So I guess I have to reuse it.
So for that I’ll have to search the prices and see if a matching price exists right?
yep, or store the IDs in your database and look them up that way