Caching full english dictionary

I would like to be able to have an entire english dictionary (approx 200,000 words) available to one of my services so I can quickly validate that a user’s word is real. The current Cache API only supports objects up to ~10,000 bytes and that is not enough. What options do I have?

Hi Asher

Cache size is currently not extendable. You may store each word as a record in a table “Dictionary” for example.

Best Regards

ok thanks!