All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redislabs.riot.db.DatabaseExportOptions Maven / Gradle / Ivy

The newest version!
package com.redislabs.riot.db;

import lombok.Data;
import picocli.CommandLine;

@Data
public class DatabaseExportOptions {

    @CommandLine.Option(names = "--key-regex", description = "Regex for key-field extraction (default: ${DEFAULT-VALUE}).", paramLabel = "")
    private String keyRegex = "\\w+:(?.+)";
    @CommandLine.Option(names = "--no-assert-updates", description = "Confirm every insert results in update of at least one row. True by default.", negatable = true)
    private boolean assertUpdates = true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy