Caching strategies to implement a headless CMS
I'm trying to replace my home grown blogging CMS software with a headless CMS(like Contentful or ButterCMS). However, my performance is taking a hit. Whenever someone goes to a blog post page I have to call the contentful API wait for the content to return and then return the page to the user. I need to cache this API response on my server so I don't have to call the contentful API everytimes someone loads a page.
The Contentful docs have a bunch of resources on how to do this with React and Gatsby, but no suggestions of how to do this in the .Net world. Any suggestions?
0 comments:
Post a Comment