Change log update
This commit is contained in:
parent
19d2d97d78
commit
0e6685ee28
1 changed files with 21 additions and 1 deletions
22
ChangeLog.md
22
ChangeLog.md
|
|
@ -1,4 +1,24 @@
|
|||
## Changes between 1.6.0 and 1.7.0
|
||||
## Changes between 1.6.0 and 1.7.0-beta1
|
||||
|
||||
### Fune Tuning Cursor Options
|
||||
|
||||
`monger.query` DSL now provides a way to fine tune database cursor
|
||||
options:
|
||||
|
||||
``` clojure
|
||||
(with-collection "products"
|
||||
...
|
||||
(options {:notimeout true, :slaveok false}) ;; where keyword matches Bytes/QUERYOPTION_*
|
||||
(options [:notimeout :slaveok])
|
||||
(options com.mongodb.Bytes/QUERYOPTION_NOTIMEOUT) ;; support Java constants
|
||||
(options :notimeout)
|
||||
...
|
||||
```
|
||||
|
||||
`monger.cursor` is a new namespace that provides the plumbing for cursor
|
||||
fine tuning but should not be widely used directly.
|
||||
|
||||
|
||||
|
||||
### Joda Time Integration Improvements: LocalDate
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue