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

Directory layer #217

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Directory layer #217

wants to merge 4 commits into from

Commits on Dec 31, 2020

  1. setup

    garrensmith authored and PierreZ committed Dec 31, 2020
    Configuration menu
    Copy the full SHA
    250b8fd View commit details
    Browse the repository at this point in the history
  2. initial basic work

    garrensmith authored and PierreZ committed Dec 31, 2020
    Configuration menu
    Copy the full SHA
    97e9d18 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2021

  1. feat(foundationdb,bindingtester): Add directory

    Provides structures for managing directories in FoundationDB.
    
    The FoundationDB API provides directories as a tool for managing related
    Subspaces. Directories are a recommended approach for administering
    applications. Each application should create or open at least one
    directory to manage its subspaces. For general guidance on directory
    usage, see the discussion in the Developer Guide.
    
    Directories are identified by hierarchical paths analogous to the paths
    in a Unix-like file system. A path is represented as a List of strings.
    Each directory has an associated subspace used to store its content. The
    layer maps each path to a short prefix used for the corresponding
    subspace. In effect, directories provide a level of indirection for
    access to subspaces.
    PierreZ committed Jun 24, 2021
    Configuration menu
    Copy the full SHA
    fd9afee View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2021

  1. cargo clippy

    PierreZ committed Jun 26, 2021
    Configuration menu
    Copy the full SHA
    a92fd9c View commit details
    Browse the repository at this point in the history