Tagged in

Domain Specific Languages

theburningmonk.com
theburningmonk.com
the personal blog for Yan Cui
More information
Followers
926
Elsewhere

DynamoDB.SQL 1.2.1 — now supports Local Secondary Index

A couple of weeks earlier, Amazon announced support for Local Secondary Indexes (LSI) for DynamoDB. You can now perform fast, efficient queries against DynamoDB tables using attributes that are not part of the existing Hash and Range


DynamoDB.SQL — version 1.1.0 released

Just a quick note to say that another minor update to DynamoDB.SQL has been release, you can view the release notes here.

The latest update adds support for a TSQL style WITH keyword for specifying optional parameters for tweaking the…


DynamoDB.SQL — version 1.0.7 released

Just a quick note to say that I have made some minor changes to DynamoDb.SQL and released version 1.0.7 of the library to Nuget, here’s a list of the changes:

  • fixed a bug with LIMIT when there is insufficient number of elements using the…

DynamoDB.SQL — minor updates

Just a quick note to say that I have made some minor changes to DynamoDb.SQL to:

  • Add support for specifying the ScanIndexForward option(see DynamoDB API doc here for detail) in a Query operation using an optional “ORDER” clause

DynamoDb.SQL — a SQL-like external DSL for Amazon DynamoDB

Amazon’s DynamoDB is a wonderful product — scalable, durable, fast, with predictable latency numbers unlike SimpleDB. However, the only gripe I have with DynamoDB is that there is no built-in support for a query language, which…