Best way to store static data?
I'm working on a project for my microservices class, and one of the services is a message moderator. It takes in a message that is sent, and does checking to see if it should be allowed/disallowed. I'm planning on just having a banned words list, but I'm unsure on the best way to store this list, Mongo? just like a .txt/.json file that reads in at app start? Postgres with an index on the term column for fast lookup (seems a bit overkill)?
any ideas are appreciated
any ideas are appreciated
