Hello, me again 🙂
As alluded to in the previous post, we're really proud to announce the release of XTDB 2.0.0-beta1 🚀
For those of you that are new to the 2.x train, the https://github.com/xtdb/xtdb/releases/tag/v2.0.0-b1 contain a high-level summary of what we've been aiming to achieve with 2.x, the differences to XT1, and how to get started.
To try it out, you can:
• spin XTDB up using a local docker image, and connect to it using your usual Postgres tooling:
◦ docker run -ti --name xtdb -p 5432:5432
◦ psql -h localhost
◦ INSERT INTO users RECORDS {_id: 'jms', name: 'James'}, {_id: 'jdt', name: 'Jeremy'};
◦ SELECT * FROM users;
• use https://github.com/xtdb/xtdb/tree/main/.devcontainer, or
• visit https://play.xtdb.com
A big thank you to everyone who's helped us get to this point, either through raising bugs, providing feedback, or being one of our Design Partners 🙏
James & the XT Team
+ accompanying blog post https://xtdb.com/blog/dev-diary-sep-24