Is there a standard naming convention for key sets, column families, and column names

I am new to this technology, it is difficult for me to find the answer to this basic question. The naming convention for key sets, column families, and column names such as

  • Pascalcase
  • camel
  • snake_case
  • alllowercase

The project I'm looking at uses alllowercase, so I'm wondering if there is a reason for this.

+6
source share
1 answer

You have to go with everything that is all lowercase. Everything that has a mixed case must be explicitly escaped by "StRinG", otherwise it will be automatically reduced. I like snake_case, but this is just a personal preference.

+13
source

Source: https://habr.com/ru/post/978694/


All Articles