Is Index on order by field required in N1QL

In n1ql we can sort on value fields using order by, but in a simple view we cannot. So do we require an index on the sort field while using order by. Also will the sorting happen in memory or will it use the disk?

Index is not required or used by ORDER BY. And the sorting happens in memory. We will add disk-based sorting in the future.

Thanks Gerald, for all the responses :smile: