简体   繁体   中英

Simple in app data store solution

Looking for an all in one solution that I can distribute within my Java application to store a small amount of data as records. This data can change over time and will be updated frequently. It stores book information - author, genre, title, rating etc.

I would like to have something that will allow me to look into full text searching on a particular table, searching is something that will be crucial.

The only real requirement outside of the searching abilities is minimal setup, I dont expect MySQL etc to be running as a service, so the solution needs minimal attention form the end user.

So far I have been looking at SQLLITE.

As for the searching its totally new to me, one of the reasons I am doing this project is so I can learn about it.

Any feedback is appreciated.

You can look at HSQLDB that is the closest thing to sqlite, and is very simple (there are three storage: in memory, in a local file, in a distant server).

It can works with apache Lucene to get a full text search.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM