One page users fill in a form which creates a record in raven db. Then they are directed to a list page which shows all their records.
The new item does not instantly appear on the list page. Although pressing F5 to do a refresh causes it to appear.
Is there an issue with raven here or is it likely something I’m doing wrong?
this is the way ravendb is designed, what you are seeing here is a stale index. When you insert new documents, any index relating to this document needs to catch up, at this point the index is classed as stale.
You can read more on the ravendb website, or a quick google should give you plenty to read.