Ryan Fitzgerald

Results 10 comments of Ryan Fitzgerald

@dschenkelman @bbrown Wouldn't a better solution be to use Hapi's pack system and also the ability to register multiple variations of the same auth schema? With Hapi you can create...

Adding / removing indexes to an existing table is fairly complicated. The DynamoDB [docs](http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GSI.OnlineOps.html#GSI.OnlineOps.Creating) actually state you should be able to create multiple indexes on a table at once. ```...

Currently only `query` supports secondary indexes. This should be relatively straightforward to add, happy to accept a pull request for it.

I agree that we should validate this data. The reason data is currently only validated during create is because during update you can pass different pieces of data which are...

Thats a wacky bug, I'll look into this asap (probably over the weekend)

vogels can be configured to work with DynamoDB local (our test suite runs against dynamdb local). ``` javascript var opts = { endpoint : 'http://localhost:8000', apiVersion: '2012-08-10' }; vogels.dynamoDriver(new AWS.DynamoDB(opts));...

DynamoDB does not support updating an items keys (both hash and range key). The only way to simulate updating primary keys is to create a new entry with the new...

At this time I would not consider adding promises support. ES6 promises have only been recently introduced in node 0.12 and iojs. Callbacks are still the standard in node and...

Do to the way DynamoDB works this would be difficult to implement correctly in a generic way. I'll give an example: ``` javascript // find all users named bob Account.scan().where('name').equals('bob').limit(500);...

If you want to try putting together a pull request to support it would be great. As you said, returning data back from DynamoDB currently is very simple. How it...