// �����һ��
this.clearTopicPartDir();
final int offset = 2048;
this.messageStore = new MessageStore(this.topic, this.partition, this.metaConfig, this.deletePolicy, offset);
final PutCommand cmd1 = new PutCommand(this.topic, this.partition, "hello".getBytes(), null, 0, 0);
final PutCommand cmd2 = new PutCommand(this.topic, this.partition, "world".getBytes(), null, 0, 0);
final long id1 = this.idWorker.nextId();
final long id2 = this.idWorker.nextId();
this.messageStore.append(id1, cmd1, new AppendCallback() {
@Override
public void appendComplete(final Location location) {