Releases: latolukasz/beeorm
Releases · latolukasz/beeorm
fix
v1.0.31 fix
Small fixes
v1.0.30 IncrWithExpire
IncrWithExpire
val := redis.IncrWithExpire("key", time.Second)
Option to index in Redis Search rows with FakeDelete > 0
By default entities with FakeDelete > 0 are not added to Redis Search index.
So when you search form always returns rows with FakeDelete == 0
Now you have an option to add fake deleted rows to index too.
Simply add searchable tag:
FakeDelete bool orm:"searchable;"
and :
query.WithFakeDeleteRows()
to return also FakeDeleted rows
Redis search support for []*Entity field
Now you can search entities by ManyReference:
type Entity struct {
...
References []*SomeEntity `orm:"searchable"`
}
query.FilterManyReferenceIn("References", 1, 3)
query.FilterManyReferenceNotIn("References", 1, 3)
FT.AGGREGATE
v1.0.26 FT.AGGREGATE
ilterStringStartsWith to QueryFieldPrefixMatch
Before:
query.FilterStringStartsWith()
Now
query.QueryFieldPrefixMatch()
v1.0.24
fixed escape
Removed consumer.Shutdown()
v1.0.23 removed context from Engine
removed context from Engine
v1.0.21 removed context from Engine