Showing posts with label Scala. Show all posts
Showing posts with label Scala. Show all posts

Wednesday, August 22, 2012

Typesafe gets 14 mil to commercialize Scala

Wednesday, August 8, 2012

SLICK - Scala Language-Integrated Connection Kit

By Vasudev Ram


SLICK is an acronym for Scala Language-Integrated Connection Kit. It is from Typesafe, the company that provides commercial support and training for Scala, Akka, etc.

Excerpt:

[ Slick is a modern database query and access library for Scala. It allows you to work with stored data almost as if you were using Scala collections while at the same time giving you full control over when a database access happens and which data is transferred. You can write your database queries in Scala instead of SQL, thus profiting from the static checking, compile-time safety and compositionality of Scala. Slick features an extensible query compiler which can generate code for different backends. ]

I took a look at the example on the SLICK page, and interestingly, it was easy to understand, though I don't really know Scala. But that example (*) was just the SLICK equivalent of an SQL INSERT followed by a SELECT. More complex queries may or not be as readable. But the idea of writing the database query and update logic in the programming language used for the rest for the application, instead of in SQL, is interesting. I had worked on a database middleware product earlier, which allowed something of the same kind, though with a completely different design and for a different language and platform (the product was implemented in C and ODBC on Windows, but the library (a DLL) was callable from both Visual Basic and C; in fact, it was mainly meant to be used from VB).

(*) That example was from a SLICK usage mode called Lifted Embedding. It also has two other modes, Direct Embedding and Plain SQL, the last of which looks more or less like traditional embedded SQL such as Pro*C (Oracle), ESQL/C (Informix), JDBC (Java), etc. Examples of all three modes are on the SLICK web site.


- Vasudev Ram - Dancing Bison Enterprises

Friday, May 13, 2011

$3 million funding for open source Scala / Typesafe Stack and company

By Vasudev Ram - www.dancingbison.com

I found this news interesting:

Seen on VentureBeat (and first on Hacker News).

Typesafe raises $3M for cloud and multi-core software development tools:

http://venturebeat.com/2011/05/12/typesafe-raises-3m-for-modern-software-development-tools/

Excerpts:

[ Typesafe ... has raised $3 million in a first round of funding. ]

[ The Cambridge, Mass.-based company is also introducing today its open source Typesafe Stack, which integrates ... the Scala programming language, Akka middleware and development tools. Scala ... takes advantage of multicore hardware and cloud computing. Scala is used by some of the world's highest-trafficked web properties such as Foursquare, Twitter and LinkedIn. ]

[ Greylock, the investment firm whose roster includes LinkedIn founder Reid Hoffman, made the investment. ]

[ Martin Odersky, chief executive of Typesafe, created the Scala (which stands for scalable language) programming language in 2001 at the Ecole Polytechnique Federale de Lausanne and launched it seven years ago. It runs on top of the Java Virtual Machine and is interoperable with Java. ]

[ Chris Conrad, engineering manager at LinkedIn, says Scala is a powerful programming tool that offers scalability and efficiency ]

[ Alex Payne, former platform lead at Twitter ... said that Scala played a critical role in improving the scalability and reliability of Twitter's backend services ]

Links:

http://www.typesafe.com/

http://www.greylock.com/

Posted via email
- Vasudev Ram - Dancing Bison Enterprises