isar 0.0.2 copy "isar: ^0.0.2" to clipboard
isar: ^0.0.2 copied to clipboard

outdated

Super Fast Cross Platform Database for Flutter & Web Apps

Isar Database

Getting StartedDocumentationExamplesSupport & IdeasPub.dev

⚠️ Very unstable and not ready for serious usage ⚠

Schema definition #

@Collection()
class Person with IsarObject {

  @Index(unique: true)
  String name;
  
  int age;
}

Query #

final isar = await openIsar();

final result = isar.users.where()
  .sortedByName() // use index
  .filter()
  .ageGreaterThan(20)
  .beginGroup()
    .nameEqualTo("Paul")
    .or()
    .nameEqualTo("Lisa")
  .endGroup()
  .findAll()
2020
likes
0
pub points
99%
popularity

Publisher

verified publisherisar.dev

Super Fast Cross Platform Database for Flutter & Web Apps

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

ffi, isar_annotation, path

More

Packages that depend on isar