Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Transakcijos #8

Open
sirex opened this issue Apr 11, 2024 · 0 comments
Open

Transakcijos #8

sirex opened this issue Apr 11, 2024 · 0 comments
Labels

Comments

@sirex
Copy link
Contributor

sirex commented Apr 11, 2024

Šiuo metu prie duomenų ir prie keitimų žurnalo (changes) saugomas tranzakcijos numeris _txn UUID formatu.

Gal būt reikėtu pakeisti _txn tipą vietoj UUID pakeisti į ref tipą, perkeliant UUID į _txn._id?

Tokiu būdu, pagal nutylėjimą būtų gaunami tokie duomenys:

{
    "_txn": {
        "_id": "UUID"
    }
}

Tačiau paprašius daugiau duomenų ?select(_txn.*) arba ?expand(_txn) būtų pateikiama daugiau duomenų:

{
    "_txn": {
        "_id": "UUID",
        "timestamp": "ISO-DATE",
        "client": {"_id": "UUID"},
        "txn": {"_id": "UUID"}
    }
}

Kitas variantas palikti _txn: uuid, ir pridėti naują veiksą:

GET /datasets/example/dataset/:txn/{uuid}

Kuris grąžintu:

{
    "id": "{uuid}",
    "created": "ISO-DATE",
    "client": {"_id": "{uuid}"},
    "objects": [
        {
            "_id": "{uuid}",
            "_op": "insert"
        }
    ],
    "page": {"next": "{base64}"
}
@sirex sirex added the idea label Apr 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant