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 RepeatedField<T> support for RocksDbStore #22

Open
Havret opened this issue Jun 6, 2024 · 0 comments
Open

Add RepeatedField<T> support for RocksDbStore #22

Havret opened this issue Jun 6, 2024 · 0 comments
Labels
enhancement New feature or request Protobuf

Comments

@Havret
Copy link
Owner

Havret commented Jun 6, 2024

It should be possible to use RepeatedField as top level value for RocksDbStore

rocksDbBuilder.AddStore<string, RepeatedField<User>, UsersStore>("users-store");
public class UsersStore : RocksDbStore<string, RepeatedField<User>>
{
    public UsersStore(IRocksDbAccessor<string, RepeatedField<User>> rocksDbAccessor) : base(rocksDbAccessor)
    {
    }
}
@Havret Havret added enhancement New feature or request Protobuf labels Jun 6, 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 Protobuf
Projects
None yet
Development

No branches or pull requests

1 participant