NoSQL Flashcards

1
Q

Polyglot persistence

A

a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Need for NoSQL

A

a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a NoSQL DB?

A

a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is BASE?

A

aa

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

ACID vs BASE

A

s

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why redis (key - value) was created?

A

Redis, which stands for Remote Dictionary Server, is a fast, open source, in-memory, key-value data store. The project started when Salvatore Sanfilippo, the original developer of Redis, wanted to improve the scalability of his Italian startup. From there, he developed Redis, which is now used as a database, cache, message broker, and queue.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

redis (key-value) use cases

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what are key-value dbs

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

when are row dbs better than column dbs

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Why can column dbs be better than row dbs for: calculate average age of males?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

how are row dbs read

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

how columns dbs are read

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

how are column dbs stored

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is a supercolumn

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a document db

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

difference between document db and keyvalue db

A

The document db can store more complex data structures. A document can have many keys and values and nested structures. The other is more simple strings, lists, sets

A key-value store provides the simplest possible data model and is exactly what the name suggests: it’s a storage system that stores values indexed by a key. You’re limited to query by key and the values are opaque,

17
Q

Use case of keyvalue dbs

A
18
Q

use cases document db

A
19
Q

what is a graph db

A
20
Q

use cases graph db

A
21
Q

What is a triple store

A
22
Q
A