Coder Social home page Coder Social logo

Comments (9)

baopham avatar baopham commented on June 1, 2024

Could you give me your table schema and a row example?

from laravel-dynamodb.

soulivong avatar soulivong commented on June 1, 2024

Here is my table schema

{
  "Table": {
    "AttributeDefinitions": [
      {
        "AttributeName": "id",
        "AttributeType": "S"
      }
    ],
    "TableName": "Users",
    "KeySchema": [
      {
        "AttributeName": "id",
        "KeyType": "HASH"
      }
    ],
    "TableStatus": "ACTIVE",
    "CreationDateTime": "2016-11-14T10:25:48.951Z",
    "ProvisionedThroughput": {
      "LastIncreaseDateTime": "1970-01-01T00:00:00.000Z",
      "LastDecreaseDateTime": "1970-01-01T00:00:00.000Z",
      "NumberOfDecreasesToday": 0,
      "ReadCapacityUnits": 10,
      "WriteCapacityUnits": 10
    },
    "TableSizeBytes": 461,
    "ItemCount": 2,
    "TableArn": "arn:aws:dynamodb:ddblocal:000000000000:table/Users"
  }
}

Here is my sample data

{
      "name": "Soulivong",
      "password": "$2y$10$08ny2ScEiiLKQqCVgdO66uUKQLw7DTI6Txtsl5KAtEU86BbJuQyOG",
      "id": "77fb5440-ab21-11e6-8592-95fa5b88afc1",
      "is_active": true,
      "remember_token": "445259e986eede7cfdb60826bb10ee910bafbc02792f8792739d4ca5a4ab",
      "email": "[email protected]"
}

from laravel-dynamodb.

baopham avatar baopham commented on June 1, 2024

Thanks! I'll get back to you soon.

from laravel-dynamodb.

soulivong avatar soulivong commented on June 1, 2024

thank you very much

from laravel-dynamodb.

soulivong avatar soulivong commented on June 1, 2024

Thank you so much for helping. Finally, I found a solution.
Because I made a mistake in declaring id in User class
protected $primaryKey = ['id'];
instead of
protected $primaryKey = 'id';
it's simply stupid mistake, sorry.

from laravel-dynamodb.

baopham avatar baopham commented on June 1, 2024

Phew! Great. Thanks!

from laravel-dynamodb.

soulivong avatar soulivong commented on June 1, 2024

May I ask you one more question?
Can you give me some recommendation on how to implement authentication function?

from laravel-dynamodb.

baopham avatar baopham commented on June 1, 2024

My recommendation would be to use Laravel default authentication workflow. e.g. use SQL db (mysql, postgres, etc.) for your User model. I'm not sure if DynamoDB is a good fit for User authentication. You can have separate models that are for DynamoDB.

from laravel-dynamodb.

soulivong avatar soulivong commented on June 1, 2024

I see, I will try to implement in a different way.
Baopham solved a lot of my problems, Once again thank you very much.

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.