dynamoid
dynamoid copied to clipboard
Ruby ORM for Amazon's DynamoDB.
Hi there. I have simple model like ``` class Post include Dynamoid::Document field :text field :post_type field :user_id range :posted_at, :datetime global_secondary_index hash_key: :user_id, range_key: :posted_at, projected_attributes: :all end ```...
I thought it might be useful to list the IAM role permissions required to use Dynamoid in the README.md. In my case I am using Dynamoid within an AWS Lambda,...
hi there, I see that dynamoid supports a JSON data type. How does one search on an attribute with a JSON field? is this possible? (i read that dynamodb supports...
Context: Table Foo has attribute "bar" (string). Sometimes I do want to reset "bar" attribute to nil. Events: ``` Foo.upsert(1, {bar: nil}) -> OK Add GSI with "bar" (hash) key...
This issue is somehow related to #364. Consider having following models. ```ruby class Attender include Dynamoid::Document table name: :attenders range :full_name field :email has_and_belongs_to_many :groups, class: ::AttenderGroup, inverse_of: :members end...
Dynamoid seems does not support DAX yet. Do you have a plan to support it?
https://aws.amazon.com/jp/blogs/aws/new-encryption-at-rest-for-dynamodb/ I seem Dynamoid does not support DyanmoDB Encryption yet. Do you have a plan that support the feature?
I've implemented a sharded scheme for our DynamoDB setup. The logic is as follows: ...figure out what shard our data is in... Dynamoid.configure do |config| config.namespace = "shard name" end...
https://aws.amazon.com/blogs/aws/new-amazon-dynamodb-transactions/ Does dynamoid support the new Transactions feature?
@andrykonchin, after looking through the code, it looks like the implimentation of [Dynamoid Adapter's delete method](https://github.com/Dynamoid/dynamoid/blob/2744fa5cd5ddac88bc7b95c56d261f0cd632556e/lib/dynamoid/adapter.rb#L103) doesnt quite handle Range Key Arrays correctly. Instead of: `ids.each_with_index.map { |id, i| [id,...