bedeoverend / feathers-datastore

MIT License
9 stars 3 forks source link

Allow storage of sub properties > 1500 bytes #6

Closed bedeoverend closed 7 years ago

bedeoverend commented 7 years ago

Currently you can't store sub properties > 1500 bytes in size, as you can't exclude indexing of sub properties e.g.

datastore.autoIndex = true;

datastore.create({
  foo: {
    bar: '...' // Long string
  }
});

will fail. This is due to this bug - a workaround would be to use this fork until resolved. That would allow storage of sub properties when autoIndexing is on, so long as auto indexing picks up on sizes of sub properties.