We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I gathered that the following code must be called:
Ollie.with(context) .setName(DB_NAME) .setVersion(DB_VERSION) .setLogLevel(LogLevel.FULL) .setCacheSize(CACHE_SIZE) .init();
What is the best place? The application initialization?
How should I set CACHE_SIZE ?
CACHE_SIZE
note: an android sample would be a huge help to get things started.
The text was updated successfully, but these errors were encountered:
The onCreate() of the application is a good place. Just go with Ollie.DEFAULT_CACHE_SIZE for starters.
onCreate()
Sorry, something went wrong.
Thanks!
The README.md should be updated using that info.
README.md
Also a bit off topic, how the call to default methods in
Select.columns("COUNT(*)").from(Note.class).observableValue(Integer.class) .subscribe(count -> { // do stuff with count });
are supposed to work for Android? Is java8 allowed for Android?
No branches or pull requests
I gathered that the following code must be called:
What is the best place?
The application initialization?
How should I set
CACHE_SIZE
?The text was updated successfully, but these errors were encountered: