title
stringlengths 1
544
โ | parent
stringlengths 0
57
โ | created
stringlengths 11
12
โ | editor
stringclasses 1
value | creator
stringclasses 4
values | edited
stringlengths 11
12
โ | refs
stringlengths 0
536
โ | text
stringlengths 1
26k
| id
stringlengths 32
32
|
---|---|---|---|---|---|---|---|---|
Redis processInputBuffer
|
Redis Structures
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
1da72eb9ef344259bb6234dce7cdfff8
|
||
Redis Thread
|
Redis Structures
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
node js ์ฒ๋ผ ๋ณด์กฐ ์ค๋ ๋๋ ์์ง๋ง ๋ฉ์ธ์ single
|
1cd1c4f6a20c421b853f30c555a2680e
|
|
Redis Bucket
|
Redis Internal Datas
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
16016f72ab46418cb4c4c4db698dae52
|
||
Redis listpack
|
Redis Internal Datas
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
redis 7
|
3cf52e135b6d406c97f37edd6810dd45
|
|
Redis quicklist
|
Redis Internal Datas
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
ziplist redis 7์์ ๋์ฒด
|
ddb9c13bbcb84d2d936cbac932383416
|
|
Redis Skiplist
|
Redis Internal Datas
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
๋ฉ๋ชจ๋ฆฌ ๋ง์ด ์
|
0bafe11cdd514a31854df6b4b0f19dda
|
|
Redis ziplist
|
Redis Internal Datas
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
skiplist ๊ฐ ๋ฉ๋ชจ๋ฆฌ ๋ง์ด ์จ์ redis 6์์ ์ฐ์
์ ํ์ผ๋ก ์ ๋ฆฌ๋ ๋ฐ์ดํฐ
- encodingtypeandlength
- data
- backlen
๋ฉ๋ชจ๋ฆฌ ์์ฃผ ์ค์ด๋ค์๋ค
|
916cd0c375f640a09036f4d7a021f3ce
|
|
Redis Command
|
Redis Notion Usage
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
์ฑ๋ฅ ์์ข์ ์ปค๋งจ๋ ๋ง์๋๋ ํด๋ผ์ฐ๋๋ ์๋ค
๊ทธ๋ฌ๋ฉด ๋ผ์ด๋ธ๋ฌ๋ฆฌ์ด์์ ์ฌ์ฉํ๋ฉด Exception ์๊น
### Redis Commands
|Title|
|:-:|
|[Redis SCAN](https://texonom.com/redis-scan-07d57dadae2043cbb751b403ce2fa1b1)|
|[Redis KEY](https://texonom.com/redis-key-c8b29de78e8347f68116fc2c43f2229b)|
|[Redis MONITOR](https://texonom.com/redis-monitor-ffc71fccde6d45d28bb8d0970a3331f8)|
|[Redis INFO](https://texonom.com/redis-info-fa2f798c1f1f42b6ace90a31f4e20b02)|
|[Redis KEYS](https://texonom.com/redis-keys-abb4de431f854f08a233959fd1fb10ab)|
|[Redis Function](https://texonom.com/redis-function-ee6152927e7f4fa09e9a1e59eb8b3e00)|
> [https://redis.io/commands/](https://redis.io/commands/)
|
53597b69da834ea681d5f577e4c77342
|
|
Redis Config
|
Redis Notion Usage
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis Configs
|Title|
|:-:|
|[Redis memory-policy](https://texonom.com/redis-memory-policy-2b76d1de96844e7684df8ed462341fe8)|
|
61d7861d08d34f19a3902adbfc684a99
|
|
Redis Error
|
Redis Notion Usage
|
Mar 3, 2022
|
Alan Jo
|
Alan Jo
|
Mar 3, 2022
|
### Redis Errors
|Title|
|:-:|
|[MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk](https://texonom.com/misconf-redis-is-configured-to-save-rdb-snapshots-but-is-currently-not-able-to-persist-on-disk-6524ed96ba634596896911d4e1f5d40c)|
|
5d1672ffb561481796f97ac73b126145
|
|
Redis Init
|
Redis Notion Usage
|
Jul 2, 2021
|
Alan Jo
|
Alan Jo
|
Jul 13, 2021
|
## make
```typewget http://download.redis.io/redis-stable.tar.gztar xvzf redis-stable.tar.gzcd redis-stablemakesudo make install```
### config
```typesudo mkdir /etc/redissudo mkdir /var/redissudo cp utils/redis_init_script /etc/init.d/redis_6379sudo cp redis.conf /etc/redis/6379.confsudo mkdir /var/redis/6379sudo nano /etc/redis/6379.conf```
- Set daemonize to yes (by default it is set to no)
- Set the dir to /var/redis/6379 (very important step!)
- bind 0.0.0.0
### daomon
```typesudo update-rc.d redis_6379 defaultssudo /etc/init.d/redis_6379 start```
### centos
```typesudo chkconfig redis_6379 defaultssudo /etc/init.d/redis_6379 start```
### check
```typeredis-cli savels /var/redis/6379# dumb.rdbredis-cli ping```
> [Redis Quick Start - Redis](https://redis.io/topics/quickstart)
> [Open Redis port for remote connections](https://stackoverflow.com/questions/19091087/open-redis-port-for-remote-connections)
|
612562c956714532872b3e77f806db68
|
|
Redis Pattern
|
Redis Notion Usage
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis Patterns
|Title|
|:-:|
|[Redis Caching](https://texonom.com/redis-caching-8772912b43dc4e278bc9db15591a4c39)|
|[Redis Session Storage](https://texonom.com/redis-session-storage-37a267d3c01b4af29757dcc3124fc0d9)|
|
9b6457c35e51485c88c9fa54222feb36
|
|
Redis Performance
|
Redis Notion Usage
|
Nov 9, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
[Cache Stampede](https://texonom.com/cache-stampede-ca68ba209d894c709fc04192c93c15d6)
|
Search ๊ฐ ์ค์ํ๋ฉด O(N) list ๋ณด๋ค set, sorted set, hash ์ด์ฉ์ผ๋ก ๊ฐ์
### Redis Performance Topics
|Title|
|:-:|
|[Redis Hotkey Issue](https://texonom.com/redis-hotkey-issue-3cb7ecc0d0ef46559775c6d4b0425f6c)|
> [๋๊ท๋ชจ ํ๊ฒฝ์์ ๋ ๋์ค ์บ์ ์ฑ๋ฅ์ ๋์ด๊ธฐ | GeekNews](https://news.hada.io/topic?id=2777)
|
dbe513e9f8c642c68073d19dc6adedf4
|
Redis Tool
|
Redis Notion Usage
|
Jul 2, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### default id is default no pass
### Redis Tools
|Title|
|:-:|
|[Redis Module](https://texonom.com/redis-module-aefa44f11d3a490db9bbb9b8082cbcc5)|
|[Redis CLI](https://texonom.com/redis-cli-87d2933b185b41f5ad9b2ce0707b072b)|
|[Redis GUI](https://texonom.com/redis-gui-3ede44a2707246bbbb5f0d5ec331f734)|
|[Redis Client](https://texonom.com/redis-client-c0ae8089ef9344188398945270cd057a)|
|
dba5f47e0f1d473b9f69448a7ae6de9c
|
|
Redis Function
|
Redis Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis Functions
|Title|
|:-:|
|[Redis freeMemoryIfNeeded()](https://texonom.com/redis-freememoryifneeded-31f259f4023d415db83b6cc16f1b7f6b)|
|
ee6152927e7f4fa09e9a1e59eb8b3e00
|
|
Redis INFO
|
Redis Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis INFO Commands
|Title|
|:-:|
|[Redis INFO all](https://texonom.com/redis-info-all-cf724c04d72346b8b487db11282f6c99)|
|[Redis Info Memory](https://texonom.com/redis-info-memory-b821f3d89ad34b62a07adf9ad095b04f)|
|[Redis Info stats](https://texonom.com/redis-info-stats-b4ba9de1be1649eb871113d5f47df7b4)|
|[Redis Info clients](https://texonom.com/redis-info-clients-446ccec6c66c46fcafd74e365c54c06b)|
|
fa2f798c1f1f42b6ace90a31f4e20b02
|
|
Redis KEY
|
Redis Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
c8b29de78e8347f68116fc2c43f2229b
|
||
Redis KEYS
|
Redis Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
์ฑ๋ฅ ์์ข๋ค ์ ๋ถ ๊ฐ์ ธ์ด scan gogo
|
abb4de431f854f08a233959fd1fb10ab
|
|
Redis MONITOR
|
Redis Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
ffc71fccde6d45d28bb8d0970a3331f8
|
||
Redis SCAN
|
Redis Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
keys command ์ ๋ฌ๋ฆฌ ์กฐ๊ธ์ฉ ๊ฐ์ ธ์ด
|
07d57dadae2043cbb751b403ce2fa1b1
|
|
Redis freeMemoryIfNeeded()
|
Redis Functions
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
[Redis memory-policy](https://texonom.com/redis-memory-policy-2b76d1de96844e7684df8ed462341fe8)
|
31f259f4023d415db83b6cc16f1b7f6b
|
|
Redis INFO all
|
Redis INFO Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
cf724c04d72346b8b487db11282f6c99
|
||
Redis Info clients
|
Redis INFO Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
ํด๋ผ์ด์ธํธ ์ ๊ณ์ ๋ฐ๋๋ฉด ์ฑ๋ฅ ์์ข๋ค
์ปค๋ฅ์
์ ์งํด์ผ
|
446ccec6c66c46fcafd74e365c54c06b
|
|
Redis Info Memory
|
Redis INFO Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
rss
used memory
|
b821f3d89ad34b62a07adf9ad095b04f
|
|
Redis Info stats
|
Redis INFO Commands
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
b4ba9de1be1649eb871113d5f47df7b4
|
||
Redis memory-policy
|
Redis Configs
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
maxmemory ์์ ์ฒ๋ฆฌ๋ฐฉ์
eviction์ ๋ค๋ฅธ ๊ฑฐ ์ง์ฐ๊ธฐ
- noeviction
- allkey-lru
- allkey-random
- allkeys-lfu
- volatile-lru
- volatile-random
- volatile-ttl
- volatile-lfu
|
2b76d1de96844e7684df8ed462341fe8
|
|
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk
|
Redis Errors
|
Mar 3, 2022
|
Alan Jo
|
Alan Jo
|
Mar 3, 2022
|
```typeconfig set stop-writes-on-bgsave-error no```
> [MISCONF Redis is configured to save RDB snapshots](https://stackoverflow.com/questions/19581059/misconf-redis-is-configured-to-save-rdb-snapshots)
> [Docker ํ์ฉ๊ธฐ(4) - redis ๊ตฌ์ฑํด๋ณด๊ธฐ](https://yongho1037.tistory.com/699)
|
6524ed96ba634596896911d4e1f5d40c
|
|
Redis Caching
|
Redis Patterns
|
Nov 9, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
[CPU Cache](https://texonom.com/cpu-cache-7ec8654dbb9f4d5ba6923728b95980eb)
|
๋ฐ์ดํฐ๋ฅผ ์บ์ ์คํ ๋ฆฌ์ง์ ๋ฏธ๋ฆฌ ์ ์ฅํ๊ณ ํ์ํ ๋๋ง๋ค ์กฐํํด์ ์ฌ์ฉํ๋ ๋ฐฉ์์ด๋ค. Inline Cache Pattern
๋ชจ๋ ๋ฐ์ดํฐ๋ฅผ ์บ์์ ์ ์ฅํ๋ ๊ฒ
> [Cache-Aside Pattern in Redis](https://brunch.co.kr/@springboot/151)
|
8772912b43dc4e278bc9db15591a4c39
|
Redis Session Storage
|
Redis Patterns
|
Jan 2, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
Inmemory DB์ด๋ฉฐ Session Storage๋ก ์ฌ์ฉ๋ ์ ์์ต๋๋ค
์๋ฒ๋ค๋ผ๋ฆฌ ๋คํธ์ํฌ ์์ฒญ์ ํ ํ์๋ ์๊ณ ์๋ฒ๋ฅผ statelessํ๊ฒ ์ ์งํ ์ ์๋ค๋ ์
[Session Clustering](https://texonom.com/session-clustering-4f907fa26d6044a1abbec921a2f81e0d) ๋ฐฉ์์ ๋จ์ ์ ๊ทน๋ณตํ ๋ฐฉ์
> [[#1] ์๋ฒ๊ฐ ์ฌ๋ฌ๋๋ฉด ๋ก๊ทธ์ธ ์ ๋ณด๋ ์ด๋์ ์ ์ฅํ ๊น? - Sticky Session, Session Clustering, Redis Session Storage](https://tjdrnr05571.tistory.com/3)
|
37a267d3c01b4af29757dcc3124fc0d9
|
|
Redis Hotkey Issue
|
Redis Performance Topics
|
Nov 9, 2021
|
Alan Jo
|
Alan Jo
|
Nov 9, 2021
|
ํ๋์ ํค์ ์ฝ๊ธฐ๊ฐ ์ง์ค๋ ๋๋ ์ฑ๋ฅ์ด ๋จ์ด์ง ์ ์์
> [Discover and resolve the hotkey issue](https://partners-intl.aliyun.com/help/doc-detail/67252.htm)
|
3cb7ecc0d0ef46559775c6d4b0425f6c
|
|
Redis CLI
|
Redis Tools
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis CLIs
|Title|
|:-:|
|[redis-cli](https://texonom.com/redis-cli-700879403b9247cc9458807a8fdd637c)|
|[iredis](https://texonom.com/iredis-1888c9fd91b94df1a808a56b2da96208)|
|
87d2933b185b41f5ad9b2ce0707b072b
|
|
Redis Client
|
Redis Tools
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis Clients
|Title|
|:-:|
|[Redis OM](https://texonom.com/redis-om-324bd83e5b9c4f0abb3c9e6547b4e1b3)|
|[node redis](https://texonom.com/node-redis-efdf3f87aaef4952ba24701bcaf3f9fc)|
|[node ioredis](https://texonom.com/node-ioredis-26dbd15259f64502a8d398281e3df6f9)|
|
c0ae8089ef9344188398945270cd057a
|
|
Redis GUI
|
Redis Tools
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis GUIs
|Title|
|:-:|
|[AnotherRedisDesktopManager](https://texonom.com/anotherredisdesktopmanager-86e5697e071a4583b059f94d1d295a25)|
|[p3x radis ui](https://texonom.com/p3x-radis-ui-5be394d94aa747caad7a63d9a22936d2)|
|[kredis](https://texonom.com/kredis-d24b1f5b354b412db606a58c8238b434)|
### redis gui
> [FiaDot/redisgrip](https://github.com/FiaDot/redisgrip)
|
3ede44a2707246bbbb5f0d5ec331f734
|
|
Redis Module
|
Redis Tools
|
May 10, 2022
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### Redis Modules
|Title|
|:-:|
|[RedisJSON](https://texonom.com/redisjson-401eb0873a89483f95d859b9c81745ff)|
|[RedisGraph](https://texonom.com/redisgraph-0ba025feb55a460d9806bed5e3093ce4)|
|[neural-redis](https://texonom.com/neural-redis-478945cbe43049598e95d4515b1bebed)|
|[RediSearch](https://texonom.com/redisearch-2e9cb9b491e24d18aafac5b8bfbf3c88)|
|[RedisGears](https://texonom.com/redisgears-70fa6db4ccb844c883ab0c171bb0e167)|
|[RedisAI](https://texonom.com/redisai-c8dbf6ccaa5e499f99045281e21eca27)|
> [Redis](https://redis.io/modules)
|
aefa44f11d3a490db9bbb9b8082cbcc5
|
|
iredis
|
Redis CLIs
|
Jun 27, 2022
|
Alan Jo
|
Alan Jo
|
Jun 27, 2022
|
[iredis](https://github.com/laixintao/iredis)
|
### A Terminal Client for Redis with AutoCompletion and Syntax Highlighting
|
1888c9fd91b94df1a808a56b2da96208
|
redis-cli
|
Redis CLIs
|
Jul 12, 2021
|
Alan Jo
|
Alan Jo
|
Jun 27, 2022
|
[iredis](https://texonom.com/iredis-1888c9fd91b94df1a808a56b2da96208)
|
```typeredis-cli flushall```
```typeACL GETUSER user```
### delete key by pattern
```typeredis-cli KEYS "prefix:*" | xargs redis-cli DEL```
> [Redis ACL Access Control List](http://redisgate.kr/redis/server/acl.php)
|
700879403b9247cc9458807a8fdd637c
|
node ioredis
|
Redis Clients
|
Jul 26, 2021
|
Alan Jo
|
Alan Jo
|
Jul 26, 2021
|
stream based
typescript
> [GitHub - luin/ioredis: ๐ A robust, performance-focused and full-featured Redis client for Node.js.](https://github.com/luin/ioredis)
|
26dbd15259f64502a8d398281e3df6f9
|
|
node redis
|
Redis Clients
|
Jul 26, 2021
|
Alan Jo
|
Alan Jo
|
Jul 26, 2021
|
js
no stream
|
efdf3f87aaef4952ba24701bcaf3f9fc
|
|
Redis OM
|
Redis Clients
|
Nov 26, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
[redis-om-spring](https://github.com/redis/redis-om-spring)
[redis-om-node](https://github.com/redis/redis-om-node)
[redis-om-dotnet](https://github.com/redis/redis-om-dotnet)
[redis-om-python](https://github.com/redis/redis-om-python)
> [Introducing the Redis OM Client Libraries | Redis](https://redis.com/blog/introducing-redis-om-client-libraries/)
|
324bd83e5b9c4f0abb3c9e6547b4e1b3
|
|
AnotherRedisDesktopManager
|
Redis GUIs
|
Jul 13, 2021
|
Alan Jo
|
Alan Jo
|
Apr 3, 2023
|
โฃ
|
86e5697e071a4583b059f94d1d295a25
|
|
kredis
|
Redis GUIs
|
Feb 22, 2021
|
Alan Jo
|
Alan Jo
|
Jul 2, 2021
|
Higher-level data structures
> [rails/kredis](https://github.com/rails/kredis?utm_source=tldrnewsletter)
|
d24b1f5b354b412db606a58c8238b434
|
|
p3x radis ui
|
Redis GUIs
|
Jul 2, 2021
|
Alan Jo
|
Alan Jo
|
Apr 11, 2022
|
> [P3X Redis UI | Apps | Electron](https://www.electronjs.org/apps/p3x-redis-ui)
|
5be394d94aa747caad7a63d9a22936d2
|
|
neural-redis
|
Redis Modules
|
Aug 31, 2021
|
Alan Jo
|
Alan Jo
|
Aug 31, 2021
|
[Neural Network](https://texonom.com/neural-network-86f54f9f1de848c1a29c56c24f7d5094)
|
> [GitHub - antirez/neural-redis: Neural networks module for Redis](https://github.com/antirez/neural-redis)
|
478945cbe43049598e95d4515b1bebed
|
RedisAI
|
Redis Modules
|
Nov 17, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
### AI serving engine for real-time applications
> [RedisAI | Redis](https://redis.com/modules/redis-ai/)
|
c8dbf6ccaa5e499f99045281e21eca27
|
|
RediSearch
|
Redis Modules
|
Aug 31, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
[Search](https://texonom.com/search-352aed8a5ed146fe97a5a74365c88771)
|
> [RediSearch - Redis Secondary Index & Query Engine](https://oss.redis.com/redisearch/)
> [GitHub - RediSearch/RediSearch: A query and indexing engine for Redis, providing secondary indexing, full-text search, and aggregations.](https://github.com/RediSearch/RediSearch/)
> [GitHub - RediSearch/RediSearch: A query and indexing engine for Redis, providing secondary indexing, full-text search, and aggregations.](https://github.com/RediSearch/RediSearch)
|
2e9cb9b491e24d18aafac5b8bfbf3c88
|
RedisGears
|
Redis Modules
|
Nov 17, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
## programmable data processing in Redis
> [RedisGears | Redis](https://redis.com/modules/redis-gears/)
|
70fa6db4ccb844c883ab0c171bb0e167
|
|
RedisGraph
|
Redis Modules
|
Aug 31, 2021
|
Alan Jo
|
Alan Jo
|
Mar 3, 2023
|
> [GitHub - swilly22/redis-graph: A graph database with Cypher query language as a Redis module](https://github.com/swilly22/redis-graph)
|
0ba025feb55a460d9806bed5e3093ce4
|
|
RedisJSON
|
Redis Modules
|
Aug 31, 2021
|
Alan Jo
|
Alan Jo
|
May 10, 2022
|
[JSON](https://texonom.com/json-71ad4e6adbf4411fb5bfd89ed18bf64e)
|
> [RedisJSON: Public Preview & Performance Benchmarking | Redis](https://redis.com/blog/redisjson-public-preview-performance-benchmarking/)
> [RedisJSON | NoSQL Document Database](https://redis.com/modules/redis-json/)
> [GitHub - RedisJSON/RedisJSON: RedisJSON - a JSON data type for Redis](https://github.com/RedisJSON/RedisJSON)
|
401eb0873a89483f95d859b9c81745ff
|
BerylDB
|
RocksDB
| null | null | null | null | null |
Beryl provides lists, keys, sets and channel subscription to its clients
powered by RocksDB
> [Introduction](https://docs.beryl.dev/)
> [GitHub - beryldb/beryldb: BerylDB is a data structure data manager that can be used to store data as key-value entries. The server allows channel subscription and is optimized to be used as a cache repository. Supported structures include lists, sets, and keys.](https://github.com/beryldb/beryldb?utm_source=tldrnewsletter)
|
db5baa9718904ec683c497302ebad0a5
|
Glean
|
RocksDB
| null | null | null | null | null |
> [GitHub - facebookincubator/Glean: System for collecting, deriving and working with facts about source code.](https://github.com/facebookincubator/glean?utm_source=tldrnewsletter)
> [Introduction | Glean](https://glean.software/docs/introduction)
|
397f77a9bd4f4d449025204a7080e89d
|
Azure SAP HANA
|
SAP HANA
| null | null | null | null | null |
> [Azure(๋๊ท๋ชจ ์ธ์คํด์ค)์์ SAP HANA์ ์ํคํ
์ฒ - Azure Virtual Machines](https://docs.microsoft.com/ko-kr/azure/virtual-machines/workloads/sap/hana-architecture)
|
89b64a77909a4b92814ca3e46512f8a1
|
Amazon DynamoDB
|
NoSQL
| null | null | null | null | null |
### function
```type```
|
8893407c9d13419f862efb3fc287d3f0
|
Cassandra
|
NoSQL
| null | null | null | null | null |
-Facebook์ ์ํด 2008๋
์ํ์น ์คํ์์ค๋ก ๊ณต๊ฐ๋ ๋ถ์ฐ ๋ฐ์ดํฐ ๋ฒ ์ด์ค (์๋ฐ ์ธ์ด ๊ธฐ๋ฐ)ย -์ปฌ๋ผ ๋จ์๋ก ๊ด๋ฆฌ๋์ด ์ปฌ๋ผํ์ผ๋ก ๋ถ๋ฅย -๋์ฉ๋์ ๋ฐ์ดํฐ ํธ๋์ญ์
์ ๋ํด ๊ณ ์ฑ๋ฅ ์ฒ๋ฆฌ๊ฐ ๊ฐ๋ฅ(์ค์ ํธ์ํฐ MYSQL -> Cassandra๋ก ์ ํ)
- SET, LIST, MAP ๋ ์นผ๋ผ์ ์ ์ฅ ๊ฐ๋ฅ
- java ๊ธฐ๋ฐ
- Schemaless
- CQL based
- ์นด์ฐ๋๋ผ ํด๋ฌ์คํฐ ์ค์ ๋ฐ ๊ตฌ์ฑ์ด HBase ํด๋ฌ์คํฐ ๊ตฌ์ฑ๋ณด๋ค ํจ์ฌ ์ฝ๋ค.
- ์นด์ฐ๋๋ผ๊ฐ ์ผ๋ฐ์ ์ผ๋ก write์ 5๋ฐฐ ์ด์์ ๋ ๋์ ์ฑ๋ฅ, read์ 4๋ฐฐ ์ด์์ ์ฑ๋ฅ์ ๋ณด์ธ๋ค.
Cassandra ๋
ธ๋๊ฐ ์ถ๊ฐ๋ ์๋ก MonogoDBย ๋ณด๋ค ํจ์ฌ ๋์ ์ ํ์ ์ธ ์ฑ๋ฅ ํฅ์์ ๋ณด์ธ๋ค.
-ย ๋ค์คย Index๊ฐ ํ์ํ ๊ตฌ์กฐ๋ผ๋ฉดย MongoDB๋ฅผ ์ ํํ๊ณ ,ย ๋ฐ์ดํฐ ํญ๋ชฉ ๋ณ๊ฒฝ์ด ๋ง๊ณ unique access๊ฐ ๋ง์ ๊ฒฝ์ฐ๋ผ๋ฉดย Cassandra๊ฐ ์ ํฉ
> [Cassandra(์นด์ฐ๋๋ผ) ํน์ง ์ ๋ฆฌ](https://nicewoong.github.io/development/2018/02/11/cassandra-feature/)
|
02acac495999474fb6a78fe6b2d3fabe
|
CockroachDB
|
NoSQL
| null | null | null | null | null |
## cloud-native distributed SQL database
> [GitHub - cockroachdb/cockroach: CockroachDB - the open source, cloud-native distributed SQL database.](https://github.com/cockroachdb/cockroach)
|
046ef644113c496893708b1424632706
|
Couchbase
|
NoSQL
| null | null | null | null | null |
JSON ๋ฌธ์, Binary Data๋ฅผ ์ ์ฅ
> [couchbase](https://github.com/couchbase)
|
12a75abd4bdc420580b5c4ac30b078ac
|
Elastic Database
|
NoSQL
| null | null | null | null | null |
1fc37cd270c447b9bdeb4ecc224078af
|
|
HarperDB
|
NoSQL
| null | null | null | null | null |
๋ถ์ฐํ ์ํคํ
์ฒ๋ฅผ ๊ธฐ๋ฐ, SQL ์ฟผ๋ฆฌ๋ฅผ ์ง์, ๋น ๋ฅธ ๋ฐ์ดํฐ ์ฒ๋ฆฌ์ ์ ์ฐํ ๋ฐ์ดํฐ ๋ชจ๋ธ๋ง
|
ad272f7b632840d7b99a65371d505cf2
|
hbase
|
NoSQL
| null | null | null | null | null |
fc66f70c1d004be69fe1f963fe59c020
|
|
Hive
|
NoSQL
| null | null | null | null | null |
Columnar NoSQL Store
|
9b76ed32da4f4269bd66942cc51a08b1
|
levelDB
|
NoSQL
| null | null | null | null | null |
NoSQL์ค ํ๋์ธ LevelDB
LevelDB๋ SQLite๋ฅผ ๋์ฒด ํ ๊ฒ
[IndexedDB](https://texonom.com/indexeddb-03520d7b716443ae8d3a5bbd559a1130) ์ ๊ธฐ๋ฐ
์์ Unix Like ์์คํ
์์ Application ๊ฐ๋ฐ ์ ๋ง์ด ์ฌ์ฉํ๋ BerkelyDB
LevelDB์ ๋ด์ฉ์ ๋ณด๋ฉด BerkelyDB๋ฅผ ์ ๋ฐ์ ์ํจ ๋ชจ์
LevelDB๋ ๋์ฉ๋ ์๋ฒ์ฉ์ผ๋ก ๊ฐ๋ฐ๋๊ธฐ ๋ณด๋ค๋ ๋จ๋ง์ ํน์ ๋ธ๋ผ์ฐ์ ์ Storage Library ์ฉ๋๋ก ๊ฐ๋ฐ ๋์ด ์ง๋ Embeded Database
Key/Value ๊ธฐ๋ฐ์ Storage Library๋ ์ฌ๋ฌ ๊ฐ์ง๊ฐ ์๋ค. Google์ BigTable์ด๋ Amazon์ Dynamo
> [google/leveldb](https://github.com/google/leveldb)
> [์๋๋ฑ๋ก๋ฐฉ์ง๋ฅผ ์ํด ๋ณด์์ ์ฐจ๋ฅผ ๊ฑฐ์น๊ณ ์์ต๋๋ค.](http://hochul.net/blog/leveldb-%EA%B5%AC%EA%B8%80%EC%9D%B4-%EA%B3%B5%EA%B0%9C%ED%95%9C-%EB%B9%A0%EB%A5%B4%EA%B3%A0-%EA%B0%80%EB%B2%BC%EC%9A%B4-%ED%82%A4%EB%B0%B8%EB%A5%98-%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0/)
|
2645096d104f4dd8a4e8cacdf8fd1277
|
mongoDB
|
NoSQL
| null | null | null | null | null |
### client โ router โ config server โ shards
### Mongo Usage
|Title|
|:-:|
|[Mongo Get started](https://texonom.com/mongo-get-started-7cbba3a39f4740308d0b4b79f5f97169)|
|[Mongo ODM](https://texonom.com/mongo-odm-1eed04245e6e41f3ba0e1bee90c72264)|
|[Mongo Protocol](https://texonom.com/mongo-protocol-a5042f76152841f999325c1f2094bfb7)|
|[mongoDB Sharding](https://texonom.com/mongodb-sharding-32bd7a030244442da994c04e7dda047e)|
|[mongod.cfg](https://texonom.com/mongodcfg-db3069fdcf12453fa759052c9ee93866)|
|[Mongo Database](https://texonom.com/mongo-database-288776f0e6524becb82df934cedb4c5d)|
|[MongoDB Index](https://texonom.com/mongodb-index-9a95670d13e64a0ca4cb997e3c1f5192)|
|[Mongo Pipeline](https://texonom.com/mongo-pipeline-5b9045f86604485588cb33d9332e995f)|
|[mongoDB Versioned API](https://texonom.com/mongodb-versioned-api-3bc42a55179347c1bd7c6bae26d2c391)|
|[mongoDB Time Series Collection](https://texonom.com/mongodb-time-series-collection-fada84fe7cd743f798fa1a34014f4d1f)|
|[mongoDB Operator](https://texonom.com/mongodb-operator-53fcd54dda294f36938c400417be0f99)|
### Mongo Notion
|Title|
|:-:|
|[BSON](https://texonom.com/bson-017b595ad9d34507b9a01d18c2fe6bae)|
|[Mongo aggregation](https://texonom.com/mongo-aggregation-b82c6e87388a4217a80efb980e262bae)|
|[Map Reducing](https://texonom.com/map-reducing-9efbb4088a634fd0b198b044d010f061)|
|[Mongo Config Server](https://texonom.com/mongo-config-server-54edb9db47414fc9b0e61f38c671cf0e)|
|[Mongo Query](https://texonom.com/mongo-query-fcf3723092454310839d77d1816f59c8)|
### Mongo CLI
|Title|
|:-:|
|[mongo shell](https://texonom.com/mongo-shell-3c5ccf192ec7486ea7243bcda925beed)|
|[mongod](https://texonom.com/mongod-e8cc408a1f414842a2d113fdffa4f8b6)|
|[mongodump](https://texonom.com/mongodump-47679c0de9414b74866c785e0c435f50)|
|[mongorestore](https://texonom.com/mongorestore-a0f3e2866505454f98c880962bb936b7)|
|[mongoimport](https://texonom.com/mongoimport-546cc5cfc820417692e2561c70357b86)|
|[mongos](https://texonom.com/mongos-e9fb5fa2781c4fcaa14d1216f93b8da5)|
### Mongo Tool
|Title|
|:-:|
|[Mongo Atlas DB](https://texonom.com/mongo-atlas-db-b0950baba162456296c712065c13378d)|
|[Mongo DB for VSCode](https://texonom.com/mongo-db-for-vscode-9e3c24a9212746778e461fdb78d1725d)|
|[Mongobooster](https://texonom.com/mongobooster-7f26e2c5f1b24a879c97be5f51ac7297)|
|[MongoHub](https://texonom.com/mongohub-93e1fc224a09407891a66af5f1417c5b)|
|[Monstache](https://texonom.com/monstache-466a67f933bd43faa6075662af65b992)|
> [mongodb pointer to another collection's item](https://stackoverflow.com/questions/14068739/mongodb-pointer-to-another-collections-item)
|
2444695fc9c64c75b982098bbb93b5e1
|
NeDB
|
NoSQL
| null | null | null | null | null |
### Javascript ๊ธฐ๋ฐ ์ด๊ฒฝ๋ ๋ฐ์ดํฐ๋ฒ ์ด์ค์ด๋ฉฐ, ๋ฉ๋ชจ๋ฆฌ ์ ์ฅ ๋ฐ ํ์ผ ์ ์ฅ ๊ธฐ๋ฅ
๋๋ ํ ๋ฆฌ์ ํ์ผ ํํ๋ก DBํ์ผ์ ์์ฑํ์ฌ ์ฌ์ฉํ๋ค
|
b0aba6228d9c4119806a2cc2b32a12b3
|
RefineDB
|
NoSQL
| null | null | null | null | null |
> [GitHub - losfair/RefineDB: A strongly-typed document database that runs on any transactional key-value store.](https://github.com/losfair/RefineDB?utm_source=tldrnewsletter)
|
0d8d687e33024b3db44606697f215f4c
|
ScyllaDB
|
NoSQL
| null | null | null | null | null |
[Cassandra](https://texonom.com/cassandra-02acac495999474fb6a78fe6b2d3fabe) Compatible ๋์์ ํจ์ฌ ๋ ๋์ ์ฒ๋ฆฌ๋๊ณผ ๋ ๋ฎ์ ๋๊ธฐ ์๊ฐ์ ๋ฌ์ฑํ๋๋ก ์ค๊ณ
### Discord use it
> [How Discord Stores Trillions of Messages](https://discord.com/blog/how-discord-stores-trillions-of-messages)
|
c907cd5dbfee4e05a1cfec269af17951
|
Splunk
|
NoSQL
| null | null | null | null | null |
### function
```type```
|
f26a9da05b07412088934ede843754e4
|
mongo shell
|
Mongo CLI
|
Oct 21, 2020
| null | null | null | null |
```typeuse (db)db.(collection).find({query})db.(collection).find({query}).toArray().lengthdb.(collection).deleteMany({query})```
> [Untitled](https://docs.mongodb.com/compass/master/documents/delete)
> [The mongo Shell - MongoDB Manual](https://docs.mongodb.com/manual/mongo/)
|
3c5ccf192ec7486ea7243bcda925beed
|
mongod
|
Mongo CLI
|
Nov 10, 2020
| null | null | null | null |
e8cc408a1f414842a2d113fdffa4f8b6
|
|
mongodump
|
Mongo CLI
|
Nov 18, 2020
| null | null | null | null |
```typemongodump --uri='mongodb+srv://'# change db namemongorestore --uri='mongodb+srv://'```
### Backup
```typemongodump --uri='' --gzip --archive="/home/stryx/server/db/`date`.gz"```
> [How To Set Up Scheduled MongoDB Backups to DigitalOcean Spaces | DigitalOcean](https://www.digitalocean.com/community/tutorials/how-to-set-up-scheduled-logical-mongodb-backups-to-digitalocean-spaces)
|
47679c0de9414b74866c785e0c435f50
|
mongoimport
|
Mongo CLI
|
Mar 16, 2020
| null | null | null | null |
```typemongoimport -d data -c user --file user.json --jsonArray --port 27017```
|
546cc5cfc820417692e2561c70357b86
|
mongorestore
|
Mongo CLI
|
Nov 18, 2020
| null | null | null | null |
### import collection bson
```typemongorestore --uri='' -d='' -c='' {{file.bson}}```
### import folder database
```typemongorestore --uri='' -d='' {{folder default dump}}```
> [How to Import .bson file format on mongodb](https://stackoverflow.com/questions/6770498/how-to-import-bson-file-format-on-mongodb)
|
a0f3e2866505454f98c880962bb936b7
|
mongos
|
Mongo CLI
|
Mar 27, 2020
| null | null | null | null |
e9fb5fa2781c4fcaa14d1216f93b8da5
|
|
BSON
|
Mongo Notion
|
Mar 16, 2020
| null | null | null | null |
### Binary JSON
### Gallary
|Title|
|:-:|
|[](https://texonom.com/8681b07dfc2146feba3af9153efa5b66)|
|
017b595ad9d34507b9a01d18c2fe6bae
|
Map Reducing
|
Mongo Notion
|
Mar 27, 2020
| null | null | null | null |
deliminator
|
9efbb4088a634fd0b198b044d010f061
|
Mongo aggregation
|
Mongo Notion
|
Mar 27, 2020
| null | null | null | null |
์งํฉ์ด๋ผ๋ ๋ป์ด๋ค
ํน์ ๋ฐ์ดํฐ์ ํต๊ณ๋ฅผ ๋ฝ์ ๋ ๋ง์ด ์ฐ์ธ๋ค
**๊ธฐ์กด์ find๋ก๋ ์ํ๋ ๋ฐ์ดํฐ๋ก ๊ฐ๊ณตํ๋๋ฐ ์ด๋ ค์****๋น
๋ฐ์ดํฐ๋ฅผ ๋ค๋ฃจ๋ ค๋ฉด ์๋ก์ด ๋ฐ์ดํฐ ๊ฐ๊ณต ๋ฐฉ์์ด ํ์****mongodb aggregation์ ์ฌ์ฉํ๋ฉด documents๋ฅผ grouping, filtering ๋ฑ ๋ค์ํ ์ฐ์ฐ์ ์ ์ฉํ ์ ์์**
**aggregation์ด๋ผ๋ ํจ์๋ก ๋ด๋ถ์ array๋ฅผ ๊ฐ์ง๋ฉฐ ์ด๋ฅผ ๋ค์ object ํํ๋ฅผ ๊ฐ์ง๋ค. ์ฌ๊ธฐ์ ์ค์ํ ๊ฒ์ ๊ฐ object์ ์์ ๋ง๋ค stage ๋ผ ์นญํ๋ฉฐ , pipeline ํํ๋ก ๋ค์ state๋ก ์ ๋ฌํ๊ฒ ๋๋ค.**
> [mongoDB aggregation ์ฌ์ฉ๋ฒ ์ตํ๊ธฐ](https://www.fun-coding.org/mongodb_advanced1.html)
> [mongodb aggregation(1)](https://zest133.tistory.com/entry/mongodb-aggregation1)
|
b82c6e87388a4217a80efb980e262bae
|
Mongo Config Server
|
Mongo Notion
|
Mar 27, 2020
| null | null | null | null |
> [Mongo Sharding 2 - config,router ๊ตฌ์ฑ](https://fkkmemi.github.io/mongodb/mongo-sharding-2/)
|
54edb9db47414fc9b0e61f38c671cf0e
|
Mongo Query
|
Mongo Notion
|
Oct 28, 2020
| null | null | null | null |
[mongo $eq](https://texonom.com/mongo-eq-bf76156915b94f88970ff841c2b2f22f)
[mongo $gte](https://texonom.com/mongo-gte-6586ad7bb94a4f3f997f99babde1d463)
[mongo $lte](https://texonom.com/mongo-lte-c37829be9676421090625a3df50ef29b)
[mongo $and](https://texonom.com/mongo-and-06ea8ae5f8344065a1d7cb5531aeccf9)
[mongo $ne](https://texonom.com/mongo-ne-632209832413434ca41fd13b3100444e)
[mongo $nin](https://texonom.com/mongo-nin-ef74c560fba0462f9077dcfa35b8edfc)
[mongo $near](https://texonom.com/mongo-near-71b92f438bf54665a4bd3ba7006abf3d)
> [05. MongoDB(๋ชฝ๊ณ ๋๋น) Study - ๋ฐ์ดํฐ ์ฝ๊ธฐ (find)](https://cionman.tistory.com/48)
|
fcf3723092454310839d77d1816f59c8
|
Untitled
|
Gallary
|
Mar 16, 2020
| null | null | null | null |
### Gallary
|Title|
|:-:|
|
8681b07dfc2146feba3af9153efa5b66
|
mongo $and
|
Mongo Query
| null | null | null | null | null |
06ea8ae5f8344065a1d7cb5531aeccf9
|
|
mongo $eq
|
Mongo Query
| null | null | null | null | null |
bf76156915b94f88970ff841c2b2f22f
|
|
mongo $gte
|
Mongo Query
| null | null | null | null | null |
6586ad7bb94a4f3f997f99babde1d463
|
|
mongo $lte
|
Mongo Query
| null | null | null | null | null |
c37829be9676421090625a3df50ef29b
|
|
mongo $ne
|
Mongo Query
| null | null | null | null | null |
632209832413434ca41fd13b3100444e
|
|
mongo $near
|
Mongo Query
| null | null | null | null | null |
71b92f438bf54665a4bd3ba7006abf3d
|
|
mongo $nin
|
Mongo Query
| null | null | null | null | null |
ef74c560fba0462f9077dcfa35b8edfc
|
|
Mongo Atlas DB
|
Mongo Tool
|
Jun 4, 2020
| null | null | null | null |
$geoNear free tear ๋ชป์ด๋ค ๊ฐ๊ฐ๊ธฐ๋ค
|
b0950baba162456296c712065c13378d
|
Mongo DB for VSCode
|
Mongo Tool
|
Nov 24, 2020
| null | null | null | null |
> ## Fucking Great Extension
>
> 
> 
|
9e3c24a9212746778e461fdb78d1725d
|
Mongobooster
|
Mongo Tool
|
Mar 28, 2020
| null | null | null | null |
### Gallary
|Title|
|:-:|
GUI with cli
> [MongoBooster](http://kanziw.com/188)
|
7f26e2c5f1b24a879c97be5f51ac7297
|
MongoHub
|
Mongo Tool
|
Mar 28, 2020
| null | null | null | null |
GUI no cli
### Gallary
|Title|
|:-:|
|
93e1fc224a09407891a66af5f1417c5b
|
Monstache
|
Mongo Tool
|
Mar 27, 2020
| null | null | null | null |
Monstache๋ MongoDB ์ปฌ๋ ์
๋ค์ Elasticsearch๋ก ์ง์์ ์ผ๋ก ์์ธํ๋ Go์ธ์ด๋ก ๊ฐ๋ฐ๋ sync ๋ฐ๋ชฌ์ด๋ค
๊ทธ๋ฆฌ๊ณ ์ด ๋
์์ ๋ฃจ๋น๋ ํ์ด์ฌ, PHP์ ๊ฐ์ด runtime์ ์์กดํ์ง ์๊ณ ๋จ์ผ ๋ฐ์ด๋๋ฆฌ ํ์ผ์ด๋ค.
> [[ MongoDB + ElasticSearch + Monstache ] ๋์ปค ๊ธฐ๋ณธ ์
ํ
์ ํด๋ณด์](https://sudarlife.tistory.com/entry/MongoDB-ElasticSearch-Monstache-%EB%8F%84%EC%BB%A4-%EA%B8%B0%EB%B3%B8-%EC%85%8B%ED%8C%85%EC%9D%84-%ED%95%B4%EB%B3%B4%EC%9E%90)
|
466a67f933bd43faa6075662af65b992
|
Mongo Database
|
Mongo Usage
|
Sep 23, 2020
| null | null | null | null |
### Mongo Database Usage
|Title|
|:-:|
|[Mongo DB Clone](https://texonom.com/mongo-db-clone-f1fd1cf9444f4082b4f04fa2ac80c255)|
|
288776f0e6524becb82df934cedb4c5d
|
Mongo Get started
|
Mongo Usage
|
Mar 17, 2020
| null | null | null | null |
### Mongodb init per os
|Title|
|:-:|
|[mongodb windows](https://texonom.com/mongodb-windows-56aec629e4b7492eb4117f2dbdd576d1)|
|
7cbba3a39f4740308d0b4b79f5f97169
|
Mongo ODM
|
Mongo Usage
|
Mar 26, 2020
| null | null | null | null |
### Object Document Mapping
### Mongo ODMs
|Title|
|:-:|
|[Mongoose](https://texonom.com/mongoose-1dd2af4c70254bfb8fc48ffe87dfbfab)|
mongodb odm is mongo.js, mongoose
mongodb.js to object mapping
|
1eed04245e6e41f3ba0e1bee90c72264
|
Mongo Pipeline
|
Mongo Usage
|
Nov 18, 2020
| null | null | null | null |
[mongo $lookup](https://texonom.com/mongo-lookup-604f0672ad2d4ab4a9cf694574738137)
mongo
|
5b9045f86604485588cb33d9332e995f
|
Mongo Protocol
|
Mongo Usage
|
Mar 17, 2020
| null | null | null | null |
[srv](https://texonom.com/srv-ba6159b590df4964acc99095e69f7b50)
mongodb
|
a5042f76152841f999325c1f2094bfb7
|
MongoDB Index
|
Mongo Usage
|
Nov 9, 2020
| null | null | null | null |
[MongoDB 2dSphere](https://texonom.com/mongodb-2dsphere-3d8d2542c2fc42f2bbfd6f02a1cfcdb5)
[MongoDB sparse Index](https://texonom.com/mongodb-sparse-index-31a5a955755b44cc901d0d47be0bc944)
|
9a95670d13e64a0ca4cb997e3c1f5192
|
mongoDB Operator
|
Mongo Usage
|
Jan 12, 2022
| null | null | null | null |
### mongoDB Operators
|Title|
|:-:|
|[mongoDB Window](https://texonom.com/mongodb-window-4321a4088ceb40dd8a70a512089d54f2)|
|
53fcd54dda294f36938c400417be0f99
|
mongoDB Sharding
|
Mongo Usage
|
May 11, 2020
| null | null | null | null |
> [Mongo Sharding 1 - shard ๊ตฌ์ฑ](https://fkkmemi.github.io/mongodb/mongo-sharding-1/)
|
32bd7a030244442da994c04e7dda047e
|
mongoDB Time Series Collection
|
Mongo Usage
|
Jan 12, 2022
| null | null | null | null |
- Weather Data
- Stock Data
- Website Visitors
> [Time Series Collections](https://docs.mongodb.com/manual/core/timeseries-collections/?utm_campaign=Int_EM_Tier%20Upgrades%20to%205.0_01_22_WW)
|
fada84fe7cd743f798fa1a34014f4d1f
|
mongoDB Versioned API
|
Mongo Usage
|
Jan 12, 2022
| null | null | null | null |
3bc42a55179347c1bd7c6bae26d2c391
|
|
mongod.cfg
|
Mongo Usage
|
May 11, 2020
| null | null | null | null |
### yaml structure
```typesystemLog: destination: file path: "/var/log/mongodb/mongod.log" logAppend: truestorage: journal: enabled: trueprocessManagement: fork: truenet: bindIp: 0.0.0.0 port: 27017setParameter: enableLocalhostAuthBypass: false```
|
db3069fdcf12453fa759052c9ee93866
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.