Tag: REST

Use SurrealDB to Persist Data with Rocket REST API

Reading Time: 8 minutes Databases are essential in web development for organizing data in various forms and shapes (both structured and unstructured). Their ultimate goal is for the stored data to be easily retrievable, updated, queried, and generally administered via a graphical user interface (GUI), dashboard, or even command line interface (CLI). We can use database management systems to […]

How to Create a REST API with Rust Rocket Framework and Diesel Middleware with PostgreSQL Database?

Reading Time: 8 minutes For many years, C and C++ have been the main low-level programming languages. C and C++ require manual deallocation of memory to prevent memory leaks which are the major cause of security breaches in Software. Rust comes in to offer memory safety and at the same time speed of execution that matches that of C. […]

How to create, publish and maintain high scalable APIs using AWS API Gateway?

Reading Time: 12 minutes To access data, business logic, and functionalities from backend services, API can act as an interface! Using API Gateway, we can enable two-way communication in real-time applications. In this blog, we will discuss Amazon API Gateway, its architecture, key concepts, use cases, and features. As part of hands-on, we will also create API Gateway and […]

Back To Top