blob: 368ffd9275bd9d51bc602c68986df20aa5e33057 [file] [log] [blame]
/*
* Copyright 2014 Fluo authors (see AUTHORS)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.fluo.stress.trie;
import org.apache.fluo.api.data.Column;
import org.apache.fluo.api.types.StringEncoder;
import org.apache.fluo.api.types.TypeLayer;
/**
*
*/
public class Constants {
public static final TypeLayer TYPEL = new TypeLayer(new StringEncoder());
public static final Column COUNT_SEEN_COL = TYPEL.bc().fam("count").qual("seen").vis();
public static final Column COUNT_WAIT_COL = TYPEL.bc().fam("count").qual("wait").vis();
public static final String NODE_SIZE_PROP = "trie.nodeSize";
public static final String STOP_LEVEL_PROP = "trie.stopLevel";
}