Skip to content

Commit 7314ff6

Browse files
authored
Fix format problems (#706)
* Fix format problems * fix a &lt problem * add blanks * fix format problems
1 parent 1a835c5 commit 7314ff6

File tree

1 file changed

+85
-85
lines changed

1 file changed

+85
-85
lines changed

build-a-ruby-on-rails-app-with-tidb.md

+85-85
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Power Up Your Rails Apps with a NewSQL Database
33
author: ['Matt Wang']
4-
date: 2020-09-30
4+
date: 2021-09-30
55
summary: This post helps Ruby on Rails developers get started with TiDB and use it as the backend storage layer of Rails applications.
66
tags: ['Tutorial']
77
categories: ['Community']
@@ -10,11 +10,11 @@ image: /images/blog/build-rails-apps-with-a-newsql-database.png
1010

1111
**Author:** [Matt Wang](https://github.com/hooopo) (Engineer at PingCAP, moderator of Ruby-China community)
1212

13-
**Editor:** [Fendy Feng](https://github.com/septemberfd), Tom Dewan
13+
**Editors:** [Fendy Feng](https://github.com/septemberfd), Tom Dewan
1414

1515
![Build a Rails App with a NewSQL Database](media/build-rails-apps-with-a-newsql-database.png)
1616

17-
If you are a Ruby on Rails developer, I think you'll really enjoy this article. It aims to help you get started with [TiDB](https://github.com/pingcap/tidb), an open-source NewSQL database, and use it to power up your Rails applications.
17+
If you are a Ruby on Rails developer, I think you'll really enjoy this article. It aims to help you get started with [TiDB](https://docs.pingcap.com/tidb/stable), an open-source NewSQL database, and use it to power up your Rails applications.
1818

1919
## Use TiDB to build up your Ruby on Rails applications
2020

@@ -34,66 +34,66 @@ Deploy a TiDB cluster on your local machine.
3434

3535
1. Install TiUP.
3636

37-
TiDB provides a smooth deployment experience using [TiUP](https://docs.pingcap.com/tidb/stable/tiup-overview), a package manager for you to manage different cluster components easily in the TiDB ecosystem.
37+
TiDB provides a smooth deployment experience using [TiUP](https://docs.pingcap.com/tidb/stable/tiup-overview), a package manager for you to manage different cluster components easily in the TiDB ecosystem.
3838

39-
```shell
40-
$ curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh
41-
```
39+
```shell
40+
$ curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh
41+
```
4242

4343
2. Start TiDB playground.
4444

45-
Start a TiDB nightly instance by running the `tiup playground` command:
45+
Start a TiDB nightly instance by running the `tiup playground` command:
4646

47-
```shell
48-
$ tiup playground nightly
49-
```
47+
```shell
48+
$ tiup playground nightly
49+
```
5050

5151
3. Connect to the TiDB instance in a similar way as you connect to MySQL.
5252

53-
```
54-
mysql --host 127.0.0.1 --port 4000 -u root -p
55-
```
53+
```
54+
mysql --host 127.0.0.1 --port 4000 -u root -p
55+
```
5656

5757
### Step 2: Initialize the Rails application
5858

5959
1. Make sure that you have Ruby and Rails installed, and initiate a Rails app named `tidb-rails`; also be sure to set the database as `mysql` because TiDB speaks the MySQL protocol.
6060

61-
```
62-
$ ruby -v
63-
ruby 2.7.0
61+
```
62+
$ ruby -v
63+
ruby 2.7.0
6464

65-
$ rails -v
66-
Rails 6.1.4
65+
$ rails -v
66+
Rails 6.1.4
6767

68-
$ rails new tidb-rails --database=mysql --api
69-
```
68+
$ rails new tidb-rails --database=mysql --api
69+
```
7070

7171
2. Add [activerecord-tidb-adapter](https://github.com/pingcap/activerecord-tidb-adapter) to Gemfile. Activerecord-tidb-adapter allows you to use TiDB as a backend for ActiveRecord and Rails apps.
7272

73-
```
74-
$ bundle add activerecord-tidb-adapter --version "~> 6.1.0"
75-
```
73+
```
74+
$ bundle add activerecord-tidb-adapter --version "~> 6.1.0"
75+
```
7676

7777
3. After you create a new app, edit `config/database.yml` to configure the connection setting to TiDB.
7878

79-
```yaml
80-
default: &default
81-
adapter: tidb
82-
encoding: utf8mb4
83-
collation: utf8mb4_general_ci
84-
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
85-
host: 127.0.0.1
86-
port: 4000
87-
variables:
88-
tidb_enable_noop_functions: ON
89-
username: root
90-
password:
91-
development:
92-
<<: *default
93-
database: tidb_rails_development
94-
```
95-
96-
Now, TiDB is already set up and ready to use with your Rails app. You don't have to configure anything else.
79+
```yaml
80+
default: &default
81+
adapter: tidb
82+
encoding: utf8mb4
83+
collation: utf8mb4_general_ci
84+
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
85+
host: 127.0.0.1
86+
port: 4000
87+
variables:
88+
tidb_enable_noop_functions: ON
89+
username: root
90+
password:
91+
development:
92+
<<: *default
93+
database: tidb_rails_development
94+
```
95+
96+
Now, TiDB is already set up and ready to use with your Rails app. You don't have to configure anything else.
9797
9898
### Step 3: Create a database
9999
@@ -111,58 +111,58 @@ Before you play with your app with TiDB, you need to define the model and migrat
111111
112112
1. Define the model by executing `rails g` command.
113113
114-
```
115-
$ bundle exec rails g model user email:string name:string gender:integer
116-
...
117-
$ vim ./db/migrate/20210826174523_create_users.rb # edit
118-
```
114+
```
115+
$ bundle exec rails g model user email:string name:string gender:integer
116+
...
117+
$ vim ./db/migrate/20210826174523_create_users.rb # edit
118+
```
119119
120120
2. Edit the `db/migrate/20210826174523_create_users.rb` file:
121121
122-
```
123-
class CreateUsers &lt; ActiveRecord::Migration[6.1]
124-
def change
125-
create_table :users do |t|
126-
t.string :email, index: {unique: true}
127-
t.string :name
128-
t.integer :gender
129-
t.timestamps
130-
end
131-
end
132-
end
133-
```
122+
```
123+
class CreateUsers < ActiveRecord::Migration[6.1]
124+
def change
125+
create_table :users do |t|
126+
t.string :email, index: {unique: true}
127+
t.string :name
128+
t.integer :gender
129+
t.timestamps
130+
end
131+
end
132+
end
133+
```
134134
135135
3. Migrate your database.
136136
137-
```
138-
$ bundle exec rails db:migrate
139-
== 20210826174523 CreateUsers: migrating ======================================
140-
-- create_table(:users)
141-
-> 0.1717s
142-
== 20210826174523 CreateUsers: migrated (0.1717s) =============================
143-
```
137+
```
138+
$ bundle exec rails db:migrate
139+
== 20210826174523 CreateUsers: migrating ======================================
140+
-- create_table(:users)
141+
-> 0.1717s
142+
== 20210826174523 CreateUsers: migrated (0.1717s) =============================
143+
```
144144
145145
4. Launch the Rails console to play with the app.
146146
147-
```
148-
$ bundle exec rails c
149-
Running via Spring preloader in process 13378
150-
Loading development environment (Rails 6.1.4.1)
151-
irb(main):001:0> 30.times.each { |i| User.create!(email: "user-#{i}@example.com", name: "user-#{i}", gender: i % 3) }
152-
(1.2ms) select version()
153-
TRANSACTION (0.8ms) BEGIN
154-
User Create (93.5ms) INSERT INTO `users` (`email`, `name`, `gender`, `created_at`, `updated_at`) VALUES ('[email protected]', 'user-0', 0, '2021-08-26 17:50:40.661945', '2021-08-26 17:50:40.661945')
155-
TRANSACTION (14.9ms) COMMIT
156-
...
157-
158-
=> 30
159-
irb(main):002:0> User.count
160-
(8.9ms) SELECT COUNT(*) FROM `users`
161-
=> 30
162-
irb(main):003:0> User.first
163-
User Load (5.8ms) SELECT `users`.* FROM `users` ORDER BY `users`.`id` ASC LIMIT 1
164-
=> #<User id: 1, email: "[email protected]", name: "user-0", gender: 0, created_at: "2021-08-26 17:50:40.661945000 +0000", updated_at: "2021-08-26 17:50:40.661945000 +0000">
165-
```
147+
```
148+
$ bundle exec rails c
149+
Running via Spring preloader in process 13378
150+
Loading development environment (Rails 6.1.4.1)
151+
irb(main):001:0> 30.times.each { |i| User.create!(email: "user-#{i}@example.com", name: "user-#{i}", gender: i % 3) }
152+
(1.2ms) select version()
153+
TRANSACTION (0.8ms) BEGIN
154+
User Create (93.5ms) INSERT INTO `users` (`email`, `name`, `gender`, `created_at`, `updated_at`) VALUES ('[email protected]', 'user-0', 0, '2021-08-26 17:50:40.661945', '2021-08-26 17:50:40.661945')
155+
TRANSACTION (14.9ms) COMMIT
156+
...
157+
158+
=> 30
159+
irb(main):002:0> User.count
160+
(8.9ms) SELECT COUNT(*) FROM `users`
161+
=> 30
162+
irb(main):003:0> User.first
163+
User Load (5.8ms) SELECT `users`.* FROM `users` ORDER BY `users`.`id` ASC LIMIT 1
164+
=> #<User id: 1, email: "[email protected]", name: "user-0", gender: 0, created_at: "2021-08-26 17:50:40.661945000 +0000", updated_at: "2021-08-26 17:50:40.661945000 +0000">
165+
```
166166
167167
## Try us out!
168168

0 commit comments

Comments
 (0)