Skip to content

Commit

Permalink
Copied Readme from docs (#1)
Browse files Browse the repository at this point in the history
* Copied Readme from docs

Why not having a nicer Readme, I copied from the docs and changed the links

* Add in build status
  • Loading branch information
GunnarLieb authored and elpete committed Jun 26, 2018
1 parent 9f45f9d commit 137c688
Showing 1 changed file with 102 additions and 3 deletions.
105 changes: 102 additions & 3 deletions README.md
@@ -1,6 +1,105 @@
# quick

[![Master Branch Build Status](https://img.shields.io/travis/elpete/quick/master.svg?style=flat-square&label=master)](https://travis-ci.org/elpete/quick)
<p align="center">
Quick<br />
<a href="https://travis-ci.org/coldbox-modules/quick"><img src="https://travis-ci.org/coldbox-modules/quick.svg?branch=master" alt="Build Status"></a>
</p>

## A ColdBox ORM Engine
## A CFML ORM Engine

### Why?

Quick was built out of lessons learned and persistent challenges in developing complex RDBMS applications using built-in Hibernate ORM in CFML.

* Hibernate ORM error messages often obfuscate the actual cause of the error because they are provided directly by the Java classes.
* Complex CFML Hibernate ORM applications can consume significant memory and processing resources, making them cost-prohibitive and inefficient when used in microservices architecture.
* Hibernate ORM is tied to the engine releases. This means that updates come infrequently and may be costly for non-OSS engine users.
* Hibernate ORM is built in Java. This limits contributions from CFML developers who don't know Java or don't feel comfortable contributing to a Java project.
* Hibernate ORM doesn't take advantage of a lot of dynamic- and meta-programming available in CFML. \(Tools like CBORM have helped to bridge this gap.\)

We can do better.

### What?

Quick is an ORM \(Object Relational Mapper\) written in CFML for CFML. It provides an [ActiveRecord](https://en.wikipedia.org/wiki/Active_record_pattern) implementation for working with your database. With it you can map database tables to components, create relationships between components, query and manipulate data, and persist all your changes to your database.

### Prerequisites

You need the following configured before using Quick:

* Configure a default datasource in your CFML engine
* ColdBox 4.3+
* Add a mapping for `quick` in your `Application.cfc`
* Configure your `BaseGrammar` in `config/ColdBox.cfc`

See [Getting Started](https://github.com/ortus-docs/quick-docs/blob/master/getting-started) for more details.

### Supported Databases

Quick supports all databases supported by [qb](https://qb.ortusbooks.com).

### Example

Here's a "quick" example to whet your appetite.

We'll show the database structure using a [migrations file](https://forgebox.io/view/commandbox-migrations). This isn't required to use `quick`, but it is highly recommended.

```javascript
// 2017_11_10_122835_create_users_table.cfc
component {

function up() {
schema.create( "users", function( table ) {
table.increments( "id" );
table.string( "username" ).unique();
table.string( "email" ).unique();
table.string( "password" );
table.timestamp( "createdDate" );
table.timestamp( "updatedDate" );
} );
}

}
```

```javascript
// User
component extends="quick.models.BaseEntity" {

// the name of the table is the pluralized version of the model
// all fields in a table are mapped by default
// both of these points can be configured on a per-entity basis

}
```

```javascript
// handlers/Users.cfc
component {

// /users/:id
function show( event, rc, prc ) {
// this finds the User with an id of 1 and retrieves it
prc.user = getInstance( "User" ).findOrFail( rc.id );
event.setView( "users/show" );
}

}
```

```markup
<!-- views/users/show.cfm -->
<cfoutput>
<h1>Hi, #prc.user.getUsername()#!</h1>
</cfoutput>
```

Now that you've seen an example, [dig in to what you can do](https://github.com/ortus-docs/quick-docs/blob/master/getting-started/defining-an-entity.md) with Quick!

### Prior Art, Acknowledgements, and Thanks

Quick is backed by [qb](https://www.forgebox.io/view/qb). Without qb, there is no Quick.

Quick is inspired heavily by [Eloquent in Laravel](https://laravel.com/docs/5.6/eloquent). Thank you Taylor Otwell and the Laravel community for a great library.

Development of Quick is sponsored by Ortus Solutions. Thank you Ortus Solutions for investing in the future of CFML.

0 comments on commit 137c688

Please sign in to comment.