Dynamoid
Dynamoid copied to clipboard
Ruby ORM for Amazon's DynamoDB
Hi there, I have run into a weird error when I tried to create new tables on AWS. Usually, it will create a new table automatically when table does not...
Hi, I am using Dynamoid version 1.0 and I am getting the following error while executing the line : **Line :** > Node.where(:region => region).where(:is_completed => 'f').count **Error:** > value...
According to the AWS-SDK document, in api version 2012-08-10, range key can be either a type of String, Integer or Binary when it comes with comparison conditions. (e.g. gt, lt,...
I may be missing something, but there is a problem with the default configuration: the default value in lib/dynamoid/config.rb sets Dynamoid::Config.adapter to be 'aws-sdk', but this causes a problem with...
`Dynamoid::Persistence#update!` is only running the `:update` callbacks, and never runs the `:save` callbacks
`Dynamoid::Persistence#save` will never run the `:update` callbacks, this implies that `Dynamoid::Fields#update_attributes` and `Dynamoid::Fields#update_attribute` won't run them too
something like this could resolve #192
Does Dynamoid work on Rails 4.2?
AWS v2?
Any plans to support AWS v2? AWS has made the DynamoDB Local, but it only supports v2 API.
In the aws_sdk.rb adapter, it has the following line. require 'aws' Is that not supposed to be; require 'aws-sdk' I can't start up my grape API app due to the...