Tobie Morgan Hitchcock

Results 171 comments of Tobie Morgan Hitchcock
trafficstars

Hi @piaoger you can work with timeseries in SurrealDB! SurrealDB supports the ability to define record IDs using arrays and objects. These values sort correctly, and can be used to...

It is now possible to completely deny access to anonymous and unauthenticated users with #2547, and in addition it's now possible to set the function and query capabilities of a...

As of commit https://github.com/surrealdb/surrealdb/commit/bb0b10e38ae35e5c5853aeac0bade0962c0c0f0d this should now be possible! This functionality will be generally available in `1.0.0-beta.9`. ```sql CREATE person:ulid() SET name = 'Tobie'; ```

I have separated this feature into a separate issue: #1572

Hi @AL1L I'm going to close this pull request, because we will soon be changing to the WebSocket implementation instead of an HTTP connection, which will solve this issue, and...

As an example, this feature (available in `1.0.0-beta.9`) can be used in the following way: ```sql DEFINE TABLE person SCHEMAFULL; DEFINE FIELD settings on person FLEXIBLE TYPE object; UPDATE person:test...

Hi @itsezc yes any field can be defined as `FLEXIBLE` and can therefore have any content within it.

Similar to https://github.com/rs/xid which we used in the Golang version of SurrealDB. The issue with `cuid` and `xid` is that they require a `hostname` from the machine on which it...

Closing this now, as it should be fixed with #2475 and #2369 🎉 👍 . In addition, further parsing performance improvements are being worked on currently.

Hi @liusong1111 there was a change made recently (https://github.com/surrealdb/surrealdb/issues/1341), which will be available in `1.0.0-beta.9`, which allows you to use `FLEXIBLE` fields on `SCHEMAFULL` tables. This allows you to have...