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

Add exists method on the kv object #8

Merged
merged 2 commits into from
Mar 3, 2025
Merged

Add exists method on the kv object #8

merged 2 commits into from
Mar 3, 2025

Conversation

oleiade
Copy link
Owner

@oleiade oleiade commented Mar 3, 2025

Users can now use exists to check if a key exists, before taking action.

import { openKv } from "k6/x/kv";

const kv = openKv();

export async function setup() {
    // Start with a clean state
    await kv.clear();
}
export default async function () {
    const abcExists = await kv.exists("a b c")
    if (!abcExists) {
      await kv.set("a b c", { "123": "baby you and me girl"});
    }

    await kv.delete("a b c");
}

@oleiade oleiade requested a review from Copilot March 3, 2025 14:57
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR Overview

This pull request introduces a new "exists" method on the KV object to allow checking if a key already exists before performing further operations.

  • Introduces a new Exists method in kv/kv.go that accesses BoltDB to determine key existence.
  • Updates README.md to include usage examples and documentation for the new method.

Reviewed Changes

File Description
kv/kv.go Adds the Exists method to check key presence using a BoltDB view.
README.md Updates the documentation to include usage details for the exists API.

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

Comments suppressed due to low confidence (1)

kv/kv.go:174

  • Consider aligning the error message style for a missing bucket with the Get method to maintain consistency across the API.
if bucket == nil {

@oleiade oleiade merged commit a22aff9 into main Mar 3, 2025
10 checks passed
@oleiade oleiade deleted the feature/exists branch March 3, 2025 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant