Skip to content

Commit d623393

Browse files
committed
minor edits
1 parent bf2fd21 commit d623393

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ use at your own risk. Issues and PRs welcome!
1111
SQLite is an embedded SQL database. It can be a good choice if
1212
your project meets some or all of these criteria:
1313

14-
- the database file lives on fast, local storage (not on a network drive)
14+
- you can store the database file on fast, local storage
15+
(not on a network drive)
1516
- the amount of data is relatively small (GBs, not TBs)
16-
- you're a data team of one with no need to share access to the database
17+
- you're a data team of one with no need to share access to a database
1718
- you mainly care about the final results of your pipelines, which are just
1819
a few models that you export into other systems for multi-user access
1920
or into BI/viz tools for analysis
@@ -22,7 +23,8 @@ another database or data warehouse platform
2223

2324
SQLite can be surprisingly fast, despite the query optimizer not being as
2425
sophisticated as other databases and data warehouse platforms. Tip: realize
25-
your models as tables and create helpful indexes in post-hooks to speed up joins.
26+
your models as tables and create indexes in post-hooks to speed up filtering
27+
and joins.
2628

2729
## How to Use This
2830

0 commit comments

Comments
 (0)