Systems | Development | Analytics | API | Testing

Databases

DreamFactory DB Functions: Using SQL Functions to Improve Your API Calls

Picture this: a customer reaches out with a seemingly simple request—convert a date field to a different format in their API responses. The catch? They only have read-only access to their database, which means no schema updates, no new columns, just pure data transformation. This intriguing challenge led us down the rabbit hole to rediscover one of DreamFactory's most powerful yet underutilized features: enhancing API calls with SQL functions.

Simulating Database Performance Under Load with Speedscale

Big data storage tools like BigQuery, Hadoop, and Cassandra are used to manage large volumes of structured and unstructured data generated by modern applications. Unlike traditional databases, these tools provide scalable and distributed infrastructure that efficiently stores, processes, and analyzes petabytes of data across clusters.

Caching in Laravel with Redis: a complete guide

Laravel is a web application framework built with PHP. It’s a framework that uses providers and dependency injections for code organization. It follows a model-view-controller design pattern. Laravel reuses the existing components of different frameworks, which helps in creating a web application. Thus, the application is designed to be more structured and pragmatic.

How To Choose The Right Database For Your Organization

A database is a critical piece of software for any organization. It stores data and allows users to access and modify it as needed. Many different databases are available, like AWS' Amazon RDS or Microsoft's Azure, so deciding which is suitable for your organization can be challenging. This article will discuss the different kinds of databases and help you choose the right database for your needs.

How to source data from AWS DynamoDB to Confluent using the DynamoDB CDC Source Connector

This is a one-minute video showing an animated architectural diagram of the integration between Amazon DynamoDB and Confluent Cloud using the all new, fully managed DynamoDB CDC Source connector. This real-time data pipeline doesn’t require you to write or maintain code.

Automatic APIs With PostgREST for PostgreSQL

Storing information in a relational database and sharing it via a RESTful API is a very common scenario these days. Depending on your RDBMS (relational database management system), this may take a lot of development effort. One solution that attempts to simplify the process is the PostgREST web server add-on for PostgreSQL. If your organization uses the PostgreSQL database, PostgREST quickly adds basic CRUD (create, read, update, delete) functions in an easy-to-use RESTful HTTP interface.

How to Improve API Flexibility with Custom SQL Endpoints

DreamFactory's custom SQL endpoints let you create APIs that are tailored to your exact needs, making your data more flexible and powerful. In this article, we will show you how to set up these endpoints, provide practical examples, and explain how to connect endpoints to your external systems.

Dealing with MySQL Lock Timeouts: Bail faster

When using MySQL and InnoDB you will inevitably run into lock timeouts sometime, somewhere. We have recently started seeing this with some of our Shopware 6 customers in their storefronts or worker queues, so I was reminded to go back to 2017 in our codebase when we put a fix in place. In our case, this happened on tables that were constantly written to from many different sources in the code base.