-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabases.json
More file actions
21260 lines (21260 loc) · 500 KB
/
Copy pathdatabases.json
File metadata and controls
21260 lines (21260 loc) · 500 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "1010data",
"slug": "1010data",
"country": "United States of America",
"start_year": "2000",
"project_types": [
"Commercial"
],
"lastmod": "2022-01-03",
"fetched": true
},
{
"name": "3store",
"slug": "3store",
"description": "3store is an RDF \"triple store\", written in C and backed by MySQL and Berkeley DB. It is an optimization and port of an older triple store (WebKBC). It provides access to the RDF data via RDQL or SPARQL over HTTP, on the command line or via a C API.",
"data_models": [
"Triplestore / RDF"
],
"country": "United Kingdom",
"start_year": "2003",
"project_types": [
"Academic",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"GPL v2"
],
"lastmod": "2023-09-29",
"fetched": true
},
{
"name": "4D",
"slug": "4d",
"description": "4D is a relational DBMS that is integrated with an IDE and a proprietary programming language. It allows users to create custom graphical interfaces to work with their database, which can then be run on Windows or Mac OS systems to edit a locally stored database file. 4D can run as a server so th…",
"data_models": [
"Relational"
],
"country": "France",
"start_year": "1984",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2019-12-11",
"fetched": true
},
{
"name": "4store",
"slug": "4store",
"data_models": [
"Triplestore / RDF"
],
"country": "United Kingdom",
"start_year": "2009",
"project_types": [
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"GPL v3"
],
"lastmod": "2018-06-04",
"fetched": true
},
{
"name": "abhot",
"slug": "abhot",
"description": "abhot (\"A Brief History Of Time\") is a time-series database management system. It is a fork of KairosDB.",
"country": "China",
"start_year": "2017",
"project_types": [
"Academic",
"Open Source"
],
"written_in": [
"Java"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-10-01",
"fetched": true
},
{
"name": "Access",
"slug": "access",
"description": "Microsoft Access is a database management system from Microsoft that combines the relational Microsoft Jet Database Engine with a graphical user interface and software-development tools. It is supported by Visual Basic for Applications (VBA) and allows developers to develop application software. …",
"data_models": [
"Relational"
],
"country": "United States of America",
"start_year": "1992",
"project_types": [
"Commercial"
],
"written_in": [
"C++"
],
"licenses": [
"Proprietary"
],
"lastmod": "2024-10-31",
"fetched": true
},
{
"name": "Accumulo",
"slug": "accumulo",
"description": "Apache Accumulo is a sorted, distributed key-value store based on Google's Bigtable, HDFS and Apache Zookeeper. First designed and developed by a team in NSA, Accumulo's mission is to support big data storing and processing, but at the same time enforce fine-grained data access control. In particu…",
"data_models": [
"Column Family / Wide-Column"
],
"country": "United States of America",
"start_year": "2008",
"project_types": [
"Open Source"
],
"written_in": [
"Java"
],
"licenses": [
"Apache v2"
],
"lastmod": "2022-06-27",
"fetched": true
},
{
"name": "AceBase",
"slug": "acebase",
"description": "AceBase is a document-oriented DBMS that supports pub/sub real-time notifications. It is designed for JavaScript environments (browsers, node.js).",
"data_models": [
"Document / XML"
],
"country": "Netherlands",
"start_year": "2018",
"project_types": [
"Hobby",
"Open Source"
],
"written_in": [
"TypeScript"
],
"licenses": [
"MIT"
],
"lastmod": "2023-07-25",
"fetched": true
},
{
"name": "AceDB",
"slug": "acedb",
"description": "AceDB (\"a C. elegans database\") is a biological database for handling genomic data. It was developed by Richard M. Durbin and Jean Thierry-Mieg in 1989.",
"country": "United Kingdom",
"start_year": "1989",
"project_types": [
"Academic",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"GPL v2",
"LGPL v2"
],
"lastmod": "2018-05-29",
"fetched": true
},
{
"name": "ActivePivot",
"slug": "activepivot",
"description": "ActivePivot is a distributed, in-memory DBMS designed for HTAP workloads, which supports real-time data streams and continuous queries. It uses a columnar storage architecture with dictionary compression and binary representation of Java objects. The system can also materialize OLAP cubes, construc…",
"data_models": [
"Relational"
],
"country": "France",
"project_types": [
"Commercial"
],
"written_in": [
"Java"
],
"licenses": [
"Proprietary"
],
"lastmod": "2022-01-03",
"fetched": true
},
{
"name": "ActorDB",
"slug": "actordb",
"description": "ActorDB is a distributed relational SQL database, which is strongly consistent, massively concurrent, and horizontally scalable. It supports no single point of failure and uses no global read or write locks. To achieve the features provided, ActorDB uses Raft distributed consensus algorithm on top …",
"data_models": [
"Relational"
],
"country": "Slovenia",
"start_year": "2014",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"Erlang"
],
"licenses": [
"Mozilla Public License"
],
"lastmod": "2025-02-02",
"fetched": true
},
{
"name": "Adabas",
"slug": "adabas",
"description": "ADABAS (\"adaptable database system\") is a database package developed by Software AG for IBM mainframes in the 1970s.",
"country": "Germany",
"start_year": "1971",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2022-06-27",
"fetched": true
},
{
"name": "Adaptive Server Enterprise",
"slug": "adaptive-server-enterprise",
"description": "Adaptive Server Enterprise (ASE) (also known as \"Sybase DB\" or \"Sybase ASE\") is a relational DBMS developed by the Sybase Corporation in the 1980s.",
"data_models": [
"Relational"
],
"country": "United States of America",
"start_year": "1987",
"project_types": [
"Commercial"
],
"written_in": [
"C",
"C++"
],
"licenses": [
"Proprietary"
],
"lastmod": "2023-11-20",
"fetched": true
},
{
"name": "Advantage Database Server",
"slug": "advantage-database-server",
"description": "Sybase Advantage Database Server is a relational DBMS released in the 1990s.",
"data_models": [
"Relational"
],
"country": "United States of America",
"start_year": "1993",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2024-10-31",
"fetched": true
},
{
"name": "Aerospike",
"slug": "aerospike",
"description": "Aerospike is a distributed key-value DBMS. It is mainly targeted at OLTP workloads with large number of transactions. It is developed by a company of the same name.",
"data_models": [
"Key/Value",
"Document / XML",
"Vector"
],
"country": "United States of America",
"start_year": "2009",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"AGPL v3"
],
"lastmod": "2025-04-22",
"fetched": true
},
{
"name": "AgateDB",
"slug": "agatedb",
"description": "AgateDB is an embeddable, persistent key-value DBMS written in Rust. It is built by Pingcap as a replacement for [TiKV](/db/tikv).",
"data_models": [
"Key/Value"
],
"country": "China",
"start_year": "2019",
"project_types": [
"Industrial Research",
"Open Source"
],
"written_in": [
"Rust"
],
"licenses": [
"Apache v2"
],
"lastmod": "2022-05-08",
"fetched": true
},
{
"name": "AGEDB",
"slug": "agedb",
"description": "AGEDB is the commercial version of PostgreSQL using the Apache AGE graph API extension.",
"data_models": [
"Graph"
],
"country": "Canada",
"start_year": "2019",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-06-15",
"fetched": true
},
{
"name": "AgensGraph",
"slug": "agensgraph",
"description": "AgensGraph is a multi-model database based on PostgreSQL RDBMS, and supports both relational and graph data models. AgensGraph enables developers to integrate the legacy relational data model and the flexible graph data model in one database. AgensGraph supports Ansi-SQL and Open Cypher. SQL querie…",
"data_models": [
"Relational",
"Key/Value",
"Document / XML",
"Graph"
],
"country": "United States of America",
"start_year": "2013",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-08-08",
"fetched": true
},
{
"name": "Aito",
"slug": "aito",
"description": "Aito is a cloud-based predictive database, that provides predictive queries as an addition to the traditional database queries. Aito's predictive queries are based on the lazy machine learning approach as a difference to the traditional eager way of doing machine learning. The lazy learning makes i…",
"country": "Finland",
"start_year": "2017",
"project_types": [
"Commercial"
],
"written_in": [
"Scala"
],
"licenses": [
"Proprietary"
],
"lastmod": "2022-06-27",
"fetched": true
},
{
"name": "AKDB",
"slug": "akdb",
"description": "AKDB (\"Avtomat Kalasnikova Database\") is an educational relational DBMS developed at the University of Zagreb.",
"data_models": [
"Relational"
],
"country": "Croatia",
"start_year": "2009",
"project_types": [
"Academic",
"Educational",
"Open Source"
],
"written_in": [
"C"
],
"lastmod": "2023-09-29",
"fetched": true
},
{
"name": "Akiban",
"slug": "akiban",
"description": "Akiban was a MySQL storage engine that performed automatic denormalization of relational tables to speed up join queries.",
"country": "United States of America",
"start_year": "2009",
"project_types": [
"Commercial"
],
"lastmod": "2023-09-27",
"fetched": true
},
{
"name": "Akumuli",
"slug": "akumuli",
"description": "Akumuli is a time-series DBMS.",
"country": "Russia",
"start_year": "2013",
"project_types": [
"Open Source"
],
"written_in": [
"C++"
],
"licenses": [
"Apache v2"
],
"lastmod": "2022-01-06",
"fetched": true
},
{
"name": "Akutan",
"slug": "akutan",
"description": "Akutan is a distributed knowledge graph DBMS written in Go.",
"data_models": [
"Triplestore / RDF"
],
"country": "United States of America",
"start_year": "2019",
"project_types": [
"Industrial Research",
"Open Source"
],
"written_in": [
"Go"
],
"licenses": [
"Apache v2"
],
"lastmod": "2020-12-15",
"fetched": true
},
{
"name": "AlaSQL",
"slug": "alasql",
"description": "AlaSQL is a relational DBMS designed to run in web browsers and JavaScript-based application servers (Node.js). It supports both relational tables and document-oriented collections (JSON).",
"data_models": [
"Relational",
"Document / XML"
],
"country": "Russia",
"start_year": "2014",
"project_types": [
"Open Source"
],
"written_in": [
"JavaScript"
],
"licenses": [
"MIT"
],
"lastmod": "2019-12-11",
"fetched": true
},
{
"name": "AlchemyDB",
"slug": "alchemydb",
"description": "AlchemyDB is a NewSQL RDBMS built on top [Redis](/db/redis).",
"data_models": [
"Relational"
],
"country": "United States of America",
"start_year": "2010",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"AGPL v3"
],
"lastmod": "2023-10-03",
"fetched": true
},
{
"name": "Alenka",
"slug": "alenka",
"description": "Alenka is a GPU-based query execution engine.",
"data_models": [
"Relational"
],
"country": "United States of America",
"start_year": "2012",
"project_types": [
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-10-10",
"fetched": true
},
{
"name": "Algebraix",
"slug": "algebraix",
"country": "United States of America",
"start_year": "2009",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2018-06-04",
"fetched": true
},
{
"name": "AllegroGraph",
"slug": "allegrograph",
"description": "AllegroGraph is a database and application framework for building Semantic Web applications. It can store data and meta-data as triples, query these triples through various query APIs like SPARQL and Prolog, and apply RDFS++ reasoning with its built-in reasoner. It's a high performance, persistent…",
"data_models": [
"Triplestore / RDF"
],
"country": "United States of America",
"start_year": "2004",
"project_types": [
"Commercial"
],
"written_in": [
"Lisp"
],
"licenses": [
"Proprietary"
],
"lastmod": "2022-01-03",
"fetched": true
},
{
"name": "AlloyDB",
"slug": "alloydb",
"description": "AlloyDB is a fully-managed database system that is a fork from PostgreSQL created by Google Cloud. AlloyDB separates the database layer from the storage layer. The disaggregated storage layer first handles write operations by writing the write-ahead log (WAL) to storage. A log processing service (L…",
"data_models": [
"Object-Relational"
],
"country": "United States of America",
"start_year": "2022",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2023-05-01",
"fetched": true
},
{
"name": "Altibase",
"slug": "altibase",
"description": "Atibase is a relational open-source database management system that is compatible and interoperable with Oracle. Atibase is a hybrid database – data can be stored and manipulated in main memory alone, and physical disk alone, or a combination of both. Altibase is an in-memory database, and its util…",
"data_models": [
"Relational"
],
"country": "South Korea",
"start_year": "1999",
"project_types": [
"Commercial"
],
"written_in": [
"C",
"C++"
],
"licenses": [
"AGPL v3"
],
"lastmod": "2024-10-24",
"fetched": true
},
{
"name": "Amelie",
"slug": "amelie",
"description": "Amelie is an in-memory relational DBMS designed for OLTP workloads.",
"data_models": [
"Relational"
],
"country": "Cyprus",
"start_year": "2023",
"project_types": [
"Hobby",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"AGPL v3"
],
"lastmod": "2025-02-17",
"fetched": true
},
{
"name": "Amisa Server",
"slug": "amisa-server",
"description": "Amisa Server was a NoSQL database-as-a-service.",
"data_models": [
"Document / XML"
],
"country": "Canada",
"start_year": "2014",
"project_types": [
"Commercial"
],
"lastmod": "2023-09-29",
"fetched": true
},
{
"name": "AncelusDB",
"slug": "ancelusdb",
"description": "AncelusDB is time-series DBMS.",
"data_models": [
"Entity-Relationship"
],
"country": "United States of America",
"start_year": "1983",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2022-01-07",
"fetched": true
},
{
"name": "AngstromDB",
"slug": "angstromdb",
"description": "AngstromDB is a NoSQL key-value DBMS based on [LMDB](/db/lmdb).",
"data_models": [
"Key/Value"
],
"country": "France",
"start_year": "2013",
"project_types": [
"Hobby",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-10-03",
"fetched": true
},
{
"name": "AnnaDB",
"slug": "annadb",
"description": "AnnaDB is an in-memory document-oriented NoSQL DBMS that stores data in proprietary [Typed Simple Object Notation (TySON)](https://github.com/roman-right/tyson) format.",
"data_models": [
"Document / XML"
],
"country": "Germany",
"start_year": "2021",
"project_types": [
"Hobby",
"Open Source"
],
"written_in": [
"Rust"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-04-06",
"fetched": true
},
{
"name": "AnnDB",
"slug": "anndb",
"description": "AnnDB is a distributed vector DBMS that supports approximate nearest neighbor queries.",
"data_models": [
"Vector"
],
"country": "Czechia",
"start_year": "2020",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"Go"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-09-22",
"fetched": true
},
{
"name": "AntDB",
"slug": "antdb",
"description": "AntDB is a distributed DBMS forked from PostgreSQL.",
"data_models": [
"Object-Relational"
],
"country": "China",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"Apache v2"
],
"lastmod": "2024-06-17",
"fetched": true
},
{
"name": "Antidote",
"slug": "antidote",
"description": "AntidoteDB is a geo-replicated key-value DBMS that uses CRDTs to synchronize changes between nodes.",
"data_models": [
"Key/Value"
],
"country": "France",
"start_year": "2015",
"project_types": [
"Academic",
"Open Source"
],
"written_in": [
"Erlang"
],
"licenses": [
"Apache v2"
],
"lastmod": "2022-01-03",
"fetched": true
},
{
"name": "AnuDB",
"slug": "anudb",
"description": "AnuDB is a serverless document-oriented DBMS for C++ applications.",
"data_models": [
"Document / XML"
],
"country": "India",
"start_year": "2025",
"project_types": [
"Hobby",
"Open Source"
],
"written_in": [
"C++"
],
"licenses": [
"MIT"
],
"lastmod": "2026-01-21",
"fetched": true
},
{
"name": "AnzoGraph",
"slug": "anzograph",
"description": "AnzoGraph is an in-memory distributed graph DBMS designed for analytics.",
"data_models": [
"Graph"
],
"country": "United States of America",
"start_year": "2007",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2022-01-03",
"fetched": true
},
{
"name": "AODBM",
"slug": "aodbm",
"description": "AODBM (\"append only database manager\") is designed in the style of dbm.",
"country": "United Kingdom",
"start_year": "2011",
"project_types": [
"Open Source"
],
"written_in": [
"C"
],
"licenses": [
"LGPL v3"
],
"lastmod": "2018-06-04",
"fetched": true
},
{
"name": "Apollo",
"slug": "apollo-facebook",
"description": "Apollo is Facebook's document-oriented DBMS announced in 2014.",
"data_models": [
"Document / XML"
],
"country": "United States of America",
"start_year": "2014",
"project_types": [
"Commercial"
],
"lastmod": "2018-06-02",
"fetched": true
},
{
"name": "Apollo",
"slug": "apollo",
"description": "Apollo is a Windows-based desktop database management system that supports FoxPro files.",
"country": "United States of America",
"start_year": "1999",
"project_types": [
"Commercial"
],
"licenses": [
"Proprietary"
],
"lastmod": "2025-04-10",
"fetched": true
},
{
"name": "Arakoon",
"slug": "arakoon",
"description": "Arakoon was a distributed key-value store with strong consistency guarantees.",
"data_models": [
"Key/Value"
],
"country": "Belgium",
"start_year": "2010",
"project_types": [
"Open Source"
],
"written_in": [
"Ocaml"
],
"licenses": [
"Apache v2"
],
"lastmod": "2019-09-30",
"fetched": true
},
{
"name": "ArangoDB",
"slug": "arangodb",
"description": "ArangoDB is a multi-model mostly-memory database. It supports key-value, documents, and graphs stores with JSON data format. ArangoDB stores all data in persistent storage to provide durability. However, to efficiently use ArangoDB, the frequently accessed pages, or equivalently called the working …",
"data_models": [
"Key/Value",
"Document / XML",
"Graph"
],
"country": "Germany",
"start_year": "2011",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"C++"
],
"licenses": [
"Apache v2"
],
"lastmod": "2022-06-27",
"fetched": true
},
{
"name": "ArcadeDB",
"slug": "arcadedb",
"description": "ArcadeDB is a multi-model DBMS created as a fork from OrientDB.",
"data_models": [
"Relational",
"Key/Value",
"Document / XML",
"Graph"
],
"country": "United Kingdom",
"start_year": "2021",
"project_types": [
"Commercial",
"Open Source"
],
"written_in": [
"Java"
],
"licenses": [
"Apache v2"
],
"lastmod": "2025-12-01",
"fetched": true
},
{
"name": "ArcticDB",
"slug": "arcticdb",
"description": "ArcticDB is an embedded, columnar datastore designed for analytical workloads on time-series data. It supports Pandas and the Python Data Science ecosystem.",
"data_models": [
"Relational"
],
"country": "United Kingdom",
"start_year": "2018",
"project_types": [
"Open Source"
],
"written_in": [
"C++"
],
"licenses": [
"Business Source License"
],
"lastmod": "2023-07-15",
"fetched": true
},
{
"name": "Ardb",
"slug": "ardb",
"description": "Ardb is a Redis-compatible NoSQL DBMS that is designed to support multiple storage backends.",
"data_models": [
"Key/Value"
],
"country": "China",
"start_year": "2013",
"project_types": [
"Open Source"
],
"written_in": [
"C++"
],
"licenses": [
"BSD"
],
"lastmod": "2019-07-18",
"fetched": true
},
{
"name": "AresDB",
"slug": "aresdb",
"description": "AresDB is a GPU-based real-time analytics database with low memory overhead, real-time upserts with primary key deduplication, and time series aggregations on both streaming and finite dimensional data, including geofences.",
"data_models": [
"Relational"
],
"country": "United States of America",
"start_year": "2018",
"project_types": [
"Open Source"
],
"written_in": [
"C",
"C++",
"Go"
],
"licenses": [
"Apache v2"
],
"lastmod": "2023-09-25",
"fetched": true
},
{
"name": "Asami",
"slug": "asami",
"description": "Asami is a graph-oriented DBMS written in Clojure.",
"data_models": [
"Graph"
],
"country": "United States of America",
"start_year": "2018",
"project_types": [
"Hobby",
"Open Source"
],
"written_in": [
"Clojure"
],
"licenses": [
"Eclipse Public License"