What language are NoSQL databases usually written in?

I have an interest in creating a NoSQL database system for a school project, and I'm curious what languages ​​different examples of NoSQL database systems are written in. If there is a majority leader, why is this language a favorite? And if in creation more involved, for example, different layers (stacks), this information will also be useful.

Thank.

+3
source share
3 answers

they are currently mostly written in Java ( Cassandra , Hadoop / HBase , etc.), but there is nothing that makes it difficult or impractical to write them in another language. I think the reason is that most of them come from an open source background that is mainly developed in Java.

+1
source

CouchDB is written in Erlang , Erlang is really good for distributed systems.

SimpleDB seems to be written in Erlang.

0
source

Ayende RavenDB is written in C # (but this is the only thing I've heard about written in C #).

0
source

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


All Articles