Coder Social home page Coder Social logo

Comments (6)

Geet2312 avatar Geet2312 commented on June 12, 2024 1

Thank you @zoe-edwards for enlightening me. This facade implementation will do for me 👍.

from laravel-dynamodb.

zoe-edwards avatar zoe-edwards commented on June 12, 2024

The way DynamoDB works is that you can only update one item at a time, so an update all isn’t really possible. Hence this package does not support that type of query.

from laravel-dynamodb.

Geet2312 avatar Geet2312 commented on June 12, 2024

Hi, I'm using a composite key, can you give me an example of how to update data using the model? I am asking this because I fail to update the data following the documentation.

from laravel-dynamodb.

zoe-edwards avatar zoe-edwards commented on June 12, 2024

Did you follow the instructions for Composite Keys?

You need

protected $primaryKey = 'customer_id';
protected $compositeKey = ['customer_id', 'agent_id'];

in your model, then you can use it like so:

$model->find(['customer_id' => 'value1', 'agent_id' => 'value2']);

from laravel-dynamodb.

Geet2312 avatar Geet2312 commented on June 12, 2024

Yes, I did follow the instruction and this implementation $model->find(['customer_id' => 'value1', 'agent_id' => 'value2'])->update($attributes); works perfectly fine now. But this update is done by performing two operations, right?

  1. Scan operation to find the data
  2. UpdateItem operation to update the data
    Please, correct me if I'm wrong.

from laravel-dynamodb.

zoe-edwards avatar zoe-edwards commented on June 12, 2024

Yeah the nature of Laravel and Eloquent is that it’ll fetch anything that you find.

If you’re using the $compositeKey correctly, that will perform a Query, not a Scan.

If you want, you can directly use the DynamoDb facade – but it’s not something that fits in with the Eloquent way of working.

use BaoPham\DynamoDb\Facades\DynamoDb;

$key // string
$attribute // string
$value

DynamoDb::table('YourTable')
    ->setKey(DynamoDb::marshalItem(['id' => $key]))
    ->setUpdateExpression('SET #a = :v')
    ->setExpressionAttributeName('#a', $attribute)
    ->setExpressionAttributeValue(':v', DynamoDb::marshalValue($value))
    ->setReturnValues('ALL_NEW')
    ->prepare(DynamoDb::client('aws_connection'))
    ->updateItem();

And that will write without a read.

from laravel-dynamodb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.