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

A key-value store or a database made in Bend #545

Open
lveillard opened this issue Jun 5, 2024 · 1 comment
Open

A key-value store or a database made in Bend #545

lveillard opened this issue Jun 5, 2024 · 1 comment
Labels
enhancement New feature or request external Tooling or other external projects

Comments

@lveillard
Copy link

I'm just curious about using Bend to build a database. Wouldnt make it super fast to retrieve complex nested values, or millions of records / keys at once?

Is it feasible?

@developedby
Copy link
Member

Relational databases and key-value databases are designed to be stored as a large array with extremely fast random-access lookups. Retrieval is trivially parallelizable.

Other database architectures could possibly benefit from the parallelism of Bend, but I have no experience with those.

Handling the concurrency of transactions and keeping a valid state could also benefit from the features of Bend.

It's definitely feasible.

@developedby developedby changed the title Question: Would it make sense to create a key-value store or a database over Bend? A key-value store or a database made in Bend Jun 5, 2024
@developedby developedby added enhancement New feature or request external Tooling or other external projects labels Jun 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request external Tooling or other external projects
Projects
None yet
Development

No branches or pull requests

2 participants