Skip to content

Releases: latolukasz/beeorm

fix

01 Sep 12:10
Compare
Choose a tag to compare
fix
v1.0.31

fix

Small fixes

01 Sep 10:59
Compare
Choose a tag to compare
v1.0.30

IncrWithExpire

IncrWithExpire

31 Aug 21:26
Compare
Choose a tag to compare
val := redis.IncrWithExpire("key", time.Second)

Option to index in Redis Search rows with FakeDelete > 0

31 Aug 15:49
Compare
Choose a tag to compare

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

31 Aug 10:00
Compare
Choose a tag to compare

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

30 Aug 13:21
Compare
Choose a tag to compare
v1.0.26

FT.AGGREGATE

ilterStringStartsWith to QueryFieldPrefixMatch

24 Aug 13:50
Compare
Choose a tag to compare

Before:

query.FilterStringStartsWith()

Now

query.QueryFieldPrefixMatch()

v1.0.24

24 Aug 13:13
Compare
Choose a tag to compare
fixed escape

Removed consumer.Shutdown()

23 Aug 08:34
Compare
Choose a tag to compare
v1.0.23

removed context from Engine

removed context from Engine

22 Aug 21:49
Compare
Choose a tag to compare
v1.0.21

removed context from Engine