August 2022 Summaries
2 posts from Koyeb
Filter
Month:
Year:
Post Summaries
Back to Blog
Heroku, a pioneering Platform as a Service (PaaS) founded in 2007, revolutionized app deployment by simplifying the process for developers, hobbyists, and startups with its user-friendly platform that initially focused on Ruby web applications. Heroku's acquisition by Salesforce in 2010 marked a period of expansion and feature enhancement, supporting multiple programming languages and enterprise-level applications. However, in August 2022, Heroku announced the discontinuation of its free services, including free Dynos, Heroku Postgres, and Heroku Data for Redis, effective November 28, 2022, prompting a mix of nostalgia and disappointment among its user base. The decision was partly driven by the need to focus on paid users and address issues related to abuse and fraud on the platform. As the tech world reflects on Heroku’s legacy, new platforms like Koyeb are emerging to offer innovative serverless solutions, continuing the evolution of app deployment that Heroku helped start.
Aug 31, 2022
1,769 words in the original blog post.
An API gateway serves as an intermediary between backend services and users, facilitating communication and acting as a reverse proxy by routing client requests to appropriate microservices and returning aggregated responses. This system simplifies managing complex microservices architectures by providing features like analytics, version management, response bundling, monetization, caching, authentication, and security measures like rate-limiting. While API gateways enhance user experience by decoupling endpoints, enabling seamless updates, and improving performance, they can also become single points of failure or complicate routing logic as the application grows. To mitigate these issues, scaling API gateways horizontally and grouping microservices by client type and business logic are recommended strategies. The use of API gateways allows for protocol-rich application development and ensures the availability of services while maintaining performance and security.
Aug 02, 2022
742 words in the original blog post.