I have the following scenario.
I have a news site on ASP.NET MVC
that currently accessing it, all the information gets caught in the bank. I want to take these requests from Front.
I thought about making a file Data.json
and every time a news item was registered it would save in the bank and in the archive upon necessity.
Ex: Every time the site is open I go to the bank and look for the last 5 news about Politics and Sports, as I already know how many news items from each editor I need to present to FrontEnd, I would only create what is needed in the file. >
But since it is not a bank, when you need to "Disable" a news item for example, you would have to go to the archive, remove that news item and put another one to avoid breaking the FrontEnd scheme.
Is it feasible to do a CRUD to do these operations in the JSON file? Does anyone know a better scheme to get to this point?