How to Generate a index file(Table) from a database?

折月煮酒 提交于 2019-12-02 21:56:39

问题


I am recently working on better indexing concepts(Learned Index-Tensorflow), as part of that, I am curious to know, that how do i generate a index file(Let's say a CSV for now) from A large database, for that i want to generate the Index file(CSV) from the database that changes daily dynamically, I want to update the index file based on the new data that is added in the Database. i.e Generating a index file from the Database.

And after Generating the index file, I will train the model using Tensorflow, as in to get the efficient search results based on the index file.

The approach that i have tried is to make a ordered list and a binary search (or, vice versa, a bst structure, which is even similar to a btree), and recreate it daily.

So i want to know How do i Generate a index file from the Database ?

来源:https://stackoverflow.com/questions/56251770/how-to-generate-a-index-filetable-from-a-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!