Speedment ACE is a Graph Database Converter, and a powerful software development tool. A Graph Database is a NoSql database that performs best when the relationships between nodes of your data are the most important (and frequently accessed) part of that data.
Speedment ACE builds a Graph Data Grid (GDG) automatically, either from existing tables, or using the Ace Front end to generate those tables. A great way to check out Speedment ACE is to install it on Amazon Web Services. Here's how to get going with Speedment in 10 easy steps.
1) Create an AWS MySql Instance.
Note the database endpoint, name, username and password then connect form a MySql client.2) From the Speedment Programmer's Guide,
Create a test schema and sample users table:
CREATE SCHEMA speedment_test;
USE speedment_test;
CREATE TABLE `speedment_test`.`user` (
`id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
`name` VARCHAR(45) NOT NULL,
`surname` VARCHAR(45) NOT NULL,
`email` VARCHAR(45) NOT NULL,
`password` VARCHAR(45) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `Index_email`(`email`),
INDEX `Index_name`(`name`)
) ENGINE = InnoDB;