-
Notifications
You must be signed in to change notification settings - Fork 47
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
"bkey" and "subkey" 용어 사용 정리 #521
Comments
This was referenced Jul 21, 2022
현황 공유
/**
* Increment/Decrement operation for collection items (b+tree items).
*
* @param key b+tree item's key
* @param subkey element key
* @param collectionMutate operation parameters (increment/decrement amount and so on)
* @param cb the callback that will contain the incremented/decremented result
* @return a new CollectionMutateOperation
*/
CollectionMutateOperation collectionMutate(String key, String subkey,
CollectionMutate collectionMutate,
OperationCallback cb);
해결 방안
|
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
현재
bkey
,subkey
등의 용어가 아래와 같이 혼용되어 사용되고 있습니다.아래와 같이 구분하여 사용하도록 수정하면 좋겠습니다.
코드와 문서를 함께 수정합시다.
The text was updated successfully, but these errors were encountered: