Skip to content

Commit 7f974ab

Browse files
authored
Update roadmap.md
1 parent 3a600f2 commit 7f974ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In this document, I describe the functionality that we want to add to DataFrame
1616

1717
## Experimental
1818

19-
* Database backend
19+
* **Database backend** - DataFrame is designed using the [Adapter pattern](https://en.wikipedia.org/wiki/Adapter_pattern) to support multiple backends (see DataFrameInternal class). Basically, DataFrame is just a layer of abstraction over some collection (which actually stores the data) that provides a handy API for data analysis. At this point, the data is stored in an Array2D. We would like to try using other backends. One cool thing to try would be a database connection. The user works with DataFrame as before, but under the hood, data is stored in a database (e.g. SQLLite) and DataFrame acts as an interface for querying that database.
2020

2121
## Documentation
2222

0 commit comments

Comments
 (0)