Skip to content

Commit e3e45a9

Browse files
authored
Merge pull request #531 from tidesdb/ts-npm
correct npm install on reference ts
2 parents 2fff43c + 6b712f6 commit e3e45a9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/content/docs/articles/configuring-tidesql-in-mariadb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ So how does this map to InnoDB, you may ask? If you've tuned InnoDB before, most
175175
| Read cache | `tidesdb_block_cache_size` | 256M | `innodb_buffer_pool_size` | 128M |
176176
| Global memory ceiling | `tidesdb_max_memory_usage` | 0 (75% RAM) | *(no single equivalent)* ||
177177
| Commit durability | `tidesdb_unified_memtable_sync_mode` | FULL | `innodb_flush_log_at_trx_commit` | 1 |
178-
| Flush timer (INVERVAL mode only) | `tidesdb_default_sync_interval_us` | 128000 (µs) | `innodb_flush_log_at_timeout` | 1 (s) |
178+
| Flush timer (INTERVAL mode only) | `tidesdb_default_sync_interval_us` | 128000 (µs) | `innodb_flush_log_at_timeout` | 1 (s) |
179179
| Write buffer sizing | `tidesdb_unified_memtable_write_buffer_size` | 256M | `innodb_log_file_size` | 96M |
180180
| Background write workers | `tidesdb_flush_threads` + `tidesdb_compaction_threads` | 4 / 4 | `innodb_write_io_threads` + `innodb_io_capacity` | 4 / 200 |
181181
| Row-lock wait | `tidesdb_lock_wait_timeout_ms` | 50000 (ms) | `innodb_lock_wait_timeout` | 50 (s) |

src/content/docs/reference/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ npm install git+https://github.com/tidesdb/tidesdb-node.git
2424
```
2525

2626
```bash
27-
npm i @tidesdb/tidesdb
27+
npm i tidesdb
2828
```
2929

3030
Or clone and install locally:

0 commit comments

Comments
 (0)