- Notifications
You must be signed in to change notification settings - Fork6
Reactive type-safe Scala driver for SQL databases
License
outworkers/morpheus
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
==============================================================
To stay up-to-date with our latest releases and news, follow us on Twitter:@outworkers.
Named after the Greek God of Dreams, morpheus is a reactive type-safe Scala DSL for MySQL, Postgres, MSSQL,MariaDB, Oracle and Sybase. "Morpheus" morphs into the SQL implementation of your desire, so instead of implementinga Slick like leaking abstraction, we have instead opted to implement an entire engine for each of the mainstreamSQL databases and unify them to offer a consistent fluent DSL experience.
With the single switch of a dependency and an import, morpheus will perform a full feature swap from MySQL toOracleSQL for example. It doesn't have a query compiler, instead it entirely mimics the functionality the database has,so if a method exists in OracleSQL but not in MySQL, you will get a compile time error if you attempt to use it.
There are no renames, no new things to learn, no new features or abstractions like in Slick, just dear old SQLas you've grown to love i or hate it.
The current version is:val morpheusVersion =
.
Morpheus is actively and avidly developed. It is not yet production ready, so trial at your own risk.
The stable release is always available on Maven Central and will be indicated by the badge at the top of this readme. The Maven Central badge is pointing at the latest version
Intermediary releases are available through our managed Bintray repository available at
Resolver.bintrayRepo("outworkers", "oss-releases")
. The latest version available on our Bintray repository is indicated by the Bintray badge at the top of this readme.
- Design philosophy
- Integrating Morpheus
Supported databases and documentation
You're probably wondering how Morpheus fairs compared to the more established players in the Scala SQL market and why we set out to do something new in thefirst place. To sum it up, we believe Slick is an excellent tool but we do not believe you should learn about our abstractions to get things done. A DSLshould auto-magically encode the same syntax and the logic as the tool it's designed for.
Instead of learning about primitives and rules we thought of to abstract away discrepancies between the various SQL implementations,Morpheus features a unique approach, what we call the auto-magical flip. Although at this point in time only MySQL is supported,Morpheus is designed to give you an "all-you-can-eat" buffet through a single import.
As follows:import com.outworkers.morpheus.mysql._
.
And done, you can now define tables, query and so on. Say you have something like this:
Recipes.select.distinctRow.where(_.name eqs "test")
.DISTINCTROW
doesn't exist in the PostgresSELECT
statement syntax,but it's a standard thing as far as MySQL is concerned.
Here's how Morpheus operates:
If you change the top level import to:com.outworkers.morpheus.postgres._
and you try to compile the samedistinctRow
query. But therewill be none. The method will simply not exist. Morpheus has now auto-magically performed a full feature swap,changed communication protocol and all underlying settings, and all you get now is Postgres features.
How? Quite a lot of fun magic under the hood, have a look throughout our decently documented codebase for more information. The beauty of it is that youdon't have to care. Slick makes it easy to move from one SQL database to the other with less code changes, but if you're well set on a database you alreadyknow and love, it may be counter productive to have to learn about a framework when you could use Morpheus and all you need is IDE auto-completes to getlightning fast development productivity.
Oh, and did we mention it's entirely asynchronous and reactive? No JDBC.
Morpheus is designed to give you an all-you-can eat buffet through a single import, so all you really have to do is to pick the module corresponding to thedatabase you want to use. At this point in time only MySQL is supported.
If you are using MySQL, you would simply use the following:
libraryDependencies++=Seq("com.outworkers"%%"morpheus-mysql"% morpheusVersion)
And then you can:import com.outworkers.morpheus.mysql._
, which will give you the full set of MySQL methods and features without any overlaps orunsupported operations. Morpheus guarantees you can almost never write an invalid SQL query unless you try really really hard.
The full list of available modules is:
libraryDependencies++=Seq("com.outworkers"%%"morpheus-dsl"% morpheusVersion,"com.outworkers"%%"morpheus-mysql"% morpheusVersion,"com.outworkers"%%"morpheus-postgres"% morpheusVersion)
Morpheus was developed by us from scratch in an attempt to evolve the SQL tooling in the Scala ecosystemto the new level and bring in fully reactive database access while preserving the complete SQL syntax you are used to.
- Flavian Alexandru @alexflav23
- Benjamin Edwards @benjumanji
We, the people behind phantom run a software development house specialised in Scala and NoSQL. If you are after enterprise gradetraining or support for using phantom,Outworkers is here to help!
We offer a comprehensive range of elite Scala development services, including but not limited to:
- Software development
- Remote Scala contractors for hire
- Advanced Scala and Morpheus training
We are big fans of open source and we will open source every project we can! To read more about our OSS efforts, clickhere.
Copyright (c) 2012 - 2017 outworkers.
About
Reactive type-safe Scala driver for SQL databases